Skip to content

Commit

Permalink
feat: 스크롤바 webkit 디자인 적용
Browse files Browse the repository at this point in the history
pipisebastian committed Nov 17, 2024
1 parent 7d3fd54 commit 1f153ec
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions client/src/styles/global.ts
Original file line number Diff line number Diff line change
@@ -6,4 +6,21 @@ export const globalStyles = defineGlobalStyles({
backgroundSize: "cover",
// TODO 폰트 설정
},

// 스크롤바 전체
"::-webkit-scrollbar": {
width: "8px",
},

// 스크롤바 전체 영역
"::-webkit-scrollbar-track": {
background: "transparent",
marginBottom: "12px",
},

// 스크롤바 핸들
"::-webkit-scrollbar-thumb": {
background: "white/50",
borderRadius: "lg",
},
});

0 comments on commit 1f153ec

Please sign in to comment.