Skip to content

Commit 8db03d9

Browse files
committed
fix: 480px~504px 에서 여전히 분과필터가 2줄인 구간이 있는 문제
1 parent 5951871 commit 8db03d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/user/Main/components/FiltersSection/index.styled.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const TabsWrapper = styled.div(({ theme }) => ({
3939
gap: '8px',
4040
width: '100%',
4141
},
42-
'@media (max-width: 409px)': {
42+
['@media (max-width: 409px)']: {
4343
gap: '6px',
4444
},
4545
}));
@@ -83,11 +83,11 @@ export const TabButton = styled.button<TabButtonProps>(({ theme, isSelected }) =
8383
transform: 'scale(0.98)',
8484
},
8585

86-
[`@media (max-width: ${theme.breakpoints.mobile})`]: {
86+
[`@media (max-width: 504px)`]: {
8787
padding: '8px 16px',
8888
fontSize: theme.font.size.sm,
8989
},
90-
'@media (max-width: 400px)': {
90+
['@media (max-width: 400px)']: {
9191
padding: '8px 11px',
9292
fontSize: theme.font.size.sm,
9393
},

0 commit comments

Comments
 (0)