40 lines
500 B
Plaintext
40 lines
500 B
Plaintext
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
height: 100%;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "bs";
|
|
src: url("./backset.woff");
|
|
}
|
|
|
|
.bs-scrollbar {
|
|
&::-webkit-scrollbar {
|
|
width: 14px;
|
|
height: 4px;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
border: 4px solid transparent;
|
|
background-clip: padding-box;
|
|
border-radius: 7px;
|
|
background-color: #d2d2d2;
|
|
}
|
|
}
|