Skip to content

Commit

Permalink
fix(agendaSection): scroll display
Browse files Browse the repository at this point in the history
  • Loading branch information
minjoo0729 committed Nov 1, 2023
1 parent 7b06628 commit 7b5e068
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions packages/web/src/styles/scroll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ const applyDirection = (direction: "x" | "y") => css`
}
`;

export const hiddenScroll = css`
::-webkit-scrollbar {
display: none;
}
`;

export const scroll = {
x: applyDirection("x"),
y: applyDirection("y"),
hidden: hiddenScroll,
hidden: css`
::-webkit-scrollbar {
display: none;
}
`,
} as const;

0 comments on commit 7b5e068

Please sign in to comment.