We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2356e commit a94f319Copy full SHA for a94f319
web/src/components/Loader.tsx
@@ -30,7 +30,7 @@ const StyledKlerosIcon = styled(KlerosIcon)`
30
const Container = styled.div<{ width?: Width; height?: Height; center?: boolean }>`
31
width: ${({ width }) => width ?? "100%"};
32
height: ${({ height }) => height ?? "100%"};
33
- ${({ center }) => (center ? "margin: auto" : "")};
+ margin: ${({ center }) => center ? "auto" : "initial"};
34
`;
35
36
interface ILoader {
0 commit comments