diff --git a/src/components/modal/Content.tsx b/src/components/modal/Content.tsx index 7f6311d..78dfb34 100644 --- a/src/components/modal/Content.tsx +++ b/src/components/modal/Content.tsx @@ -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; `; diff --git a/src/components/navigatorBar/index.tsx b/src/components/navigatorBar/index.tsx index 4ecf527..c503106 100644 --- a/src/components/navigatorBar/index.tsx +++ b/src/components/navigatorBar/index.tsx @@ -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; `;