2024-03-20 18:20:42 +08:00
|
|
|
@import url(./inter.less);
|
|
|
|
|
|
2026-03-05 20:47:29 +08:00
|
|
|
:root {
|
|
|
|
|
--font-sans: 'Inter';
|
2024-04-18 19:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-05 20:47:29 +08:00
|
|
|
@supports (font-variation-settings: normal) {
|
|
|
|
|
:root {
|
|
|
|
|
--font-sans: 'InterVariable';
|
|
|
|
|
}
|
2024-04-18 19:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-05 20:47:29 +08:00
|
|
|
html,
|
|
|
|
|
body,
|
2024-04-18 19:27:53 +08:00
|
|
|
#root {
|
2026-03-05 20:47:29 +08:00
|
|
|
width: 100vw;
|
|
|
|
|
width: 100dvw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
height: 100dvh;
|
|
|
|
|
overflow: hidden;
|
2024-04-18 19:27:53 +08:00
|
|
|
|
2026-03-05 20:47:29 +08:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
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;
|
|
|
|
|
}
|