Skip to content

Commit

Permalink
fix: 스크롤 모바일 분기처리
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Nov 25, 2024
1 parent 18f378e commit 78a6027
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/components/ProjectTab/ProjectTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ export function ProjectTab({ currentTab, setCurrentTab }: ProjectTabProps) {

const tabWrapperCss = css`
display: flex;
width: 100%;
overflow-x: scroll;
&::-webkit-scrollbar {
display: none;
${mediaQuery('mobile')} {
width: 100%;
overflow-x: scroll;
&::-webkit-scrollbar {
display: none;
}
}
`;

Expand Down

0 comments on commit 78a6027

Please sign in to comment.