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;
|
|
|
|
|
}
|
2026-05-25 17:21:36 +08:00
|
|
|
|
|
|
|
|
.Highlight--scrolledTo .Highlight__part {
|
2026-05-25 20:36:51 +08:00
|
|
|
background: rgb(var(--accent-primary) / 0.5) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Highlight__part {
|
|
|
|
|
background: rgb(var(--accent-primary) / 0.1) !important;
|
2026-05-25 17:21:36 +08:00
|
|
|
}
|
2026-06-10 19:39:00 +08:00
|
|
|
|
|
|
|
|
.x-spreadsheet-scrollbar {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: initial;
|
|
|
|
|
}
|