2024-03-20 18:20:42 +08:00
|
|
|
@import url(./inter.less);
|
|
|
|
|
|
2024-04-18 19:27:53 +08:00
|
|
|
html {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-20 18:20:42 +08:00
|
|
|
body {
|
|
|
|
|
font-family: Inter;
|
2024-03-29 16:15:12 +08:00
|
|
|
margin: 0;
|
2024-04-18 19:27:53 +08:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#root {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-app {
|
|
|
|
|
height: 100%;
|
2024-03-20 18:20:42 +08:00
|
|
|
}
|
2024-09-05 14:47:48 +08:00
|
|
|
|
|
|
|
|
/* Scroll bar stylings */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: rgb(219, 218, 218);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: #aaaaaa;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #888;
|
|
|
|
|
}
|