Skip to content

Commit 22df688

Browse files
committed
refactor: 481px~672px에서 분과필터 두줄되지 않도록 수정
1 parent 5456ac3 commit 22df688

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
@@ -16,18 +16,18 @@ export const FilterTabsContainer = styled.div(({ theme }) => ({
1616
},
1717
}));
1818

19-
export const FilterRow = styled.div(({ theme }) => ({
19+
export const FilterRow = styled.div({
2020
display: 'flex',
2121
alignItems: 'center',
2222
width: '100%',
2323
gap: '48px',
2424

25-
[`@media (max-width: ${theme.breakpoints.mobile})`]: {
25+
'@media (max-width: 672px)': {
2626
flexDirection: 'column',
2727
alignItems: 'flex-start',
2828
gap: '16px',
2929
},
30-
}));
30+
});
3131

3232
export const TabsWrapper = styled.div(({ theme }) => ({
3333
display: 'flex',

0 commit comments

Comments
 (0)