Skip to content

Commit a94f319

Browse files
Update web/src/components/Loader.tsx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent ea2356e commit a94f319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/Loader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const StyledKlerosIcon = styled(KlerosIcon)`
3030
const Container = styled.div<{ width?: Width; height?: Height; center?: boolean }>`
3131
width: ${({ width }) => width ?? "100%"};
3232
height: ${({ height }) => height ?? "100%"};
33-
${({ center }) => (center ? "margin: auto" : "")};
33+
margin: ${({ center }) => center ? "auto" : "initial"};
3434
`;
3535

3636
interface ILoader {

0 commit comments

Comments
 (0)