2024-03-20 18:20:42 +08:00
@import url(./inter.less);
2024-04-18 19:27:53 +08:00
html {
height: 100%;
2025-01-21 10:19:38 +08:00
overflow: hidden; // The content of the DatasetSettings page is too high, which will cause scroll bars to appear on the html tags. Setting the maximum height in DatasetSettings does not work either. I don't understand.
2024-04-18 19:27:53 +08:00
}
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%;
2025-05-02 21:27:21 +08:00
width: 100%;
2024-03-20 18:20:42 +08:00
}
2024-09-05 14:47:48 +08:00
2025-09-02 17:43:37 +08:00
.vue-office-excel {
height: 100%;
}
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;
}