Skip to content

Commit d67393d

Browse files
committed
revert: Revert wrapper box around icon button
1 parent 27e8852 commit d67393d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/components/Themes/ThemeModal.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,11 @@ const ThemeModal: React.FC<{
6969
marginTop: { xs: 4, md: 0 },
7070
}}
7171
>
72-
<IconButton onClick={onClose}>
73-
<CloseIcon />
74-
</IconButton>
72+
<Box sx={{ display: "flex", justifyContent: "flex-end" }}>
73+
<IconButton onClick={onClose}>
74+
<CloseIcon />
75+
</IconButton>
76+
</Box>
7577

7678
<Grid
7779
container

0 commit comments

Comments
 (0)