Skip to content

Commit

Permalink
fix: 스크롤바 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Mar 27, 2023
1 parent d56387d commit 1d55118
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/modal/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ export const Content = ({ className, content }: contentPropsType) => {
const _Content = styled(Text)`
height: 108px;
margin-bottom: 33px;
-ms-overflow-style: none;
&::-webkit-scrollbar {
display: none;
}
overflow: scroll;
`;
4 changes: 4 additions & 0 deletions src/components/navigatorBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,9 @@ const _Navigation = styled.nav`
box-shadow: 0 1px 20px rgba(204, 204, 204, 0.24);
min-height: 100%;
max-height: 100%;
-ms-overflow-style: none;
&::-webkit-scrollbar {
display: none;
}
overflow: scroll;
`;

0 comments on commit 1d55118

Please sign in to comment.