Files
webpreview/src/global.css
yuetsh 74bdef2236
Some checks failed
Deploy / deploy (build, debian, 22) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822) (push) Has been cancelled
update
2026-04-01 06:18:19 -06:00

28 lines
380 B
CSS

* {
box-sizing: border-box;
}
body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #d0d0d0;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #b0b0b0;
}