Skip to content

Commit

Permalink
fix: remove all broswer scroll style
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-redo committed Mar 27, 2024
1 parent fa02f09 commit fc9762c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@ button {
outline: none;
box-sizing: border-box;
text-decoration: none;
scrollbar-width: none;
scrollbar-width: none; /* Firefox 스크롤 제거 */
-ms-overflow-style: none; /* IE, Edge 스크롤 제거 */
}

/* 웹킷 기반 브라우저 스크롤 제거 */
::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera*/
}

0 comments on commit fc9762c

Please sign in to comment.