Files
lingji-work-fe/src/styles/lib/reset.scss

47 lines
712 B
SCSS
Raw Normal View History

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: PingFangSC-Regular, PingFang SC;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body {
2025-08-15 17:15:36 +08:00
height: 100%;
background: $color-background;
font-family: $font-family-regular;
font-size: 14px;
-webkit-print-color-adjust: exact;
}
p {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
/* 滚动条样式 */
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-track-piece {
border-radius: 0;
}
::-webkit-scrollbar-thumb {
height: 10px;
background-color: #C9CDD4;
border-radius: 99px;
outline-offset: -2px;
}
::-webkit-scrollbar-button {
display: none;
}