2026-02-28 19:41:34 +00:00
|
|
|
@import 'tailwindcss';
|
2026-03-01 08:03:51 +00:00
|
|
|
@import 'tw-animate-css';
|
2026-02-28 05:45:37 +00:00
|
|
|
|
2026-03-01 14:15:08 +00:00
|
|
|
@utility scrollbar-none {
|
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-04 06:35:30 +00:00
|
|
|
@utility scrollbar-thin {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: var(--color-border) transparent;
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
}
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
|
background: var(--color-border);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: var(--color-muted);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-27 21:54:38 +00:00
|
|
|
@theme {
|
|
|
|
|
--color-panel: #2a2a2a;
|
|
|
|
|
--color-canvas: #1e1e1e;
|
|
|
|
|
--color-border: #3a3a3a;
|
|
|
|
|
--color-hover: #353535;
|
|
|
|
|
--color-accent: #3b82f6;
|
|
|
|
|
--color-surface: #e0e0e0;
|
|
|
|
|
--color-muted: #888888;
|
|
|
|
|
--color-input: #1e1e1e;
|
2026-03-16 11:13:36 +00:00
|
|
|
--color-component: #9747ff;
|
2026-02-27 21:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
#app {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2026-02-28 19:41:34 +00:00
|
|
|
font-family:
|
|
|
|
|
Inter,
|
|
|
|
|
system-ui,
|
|
|
|
|
-apple-system,
|
|
|
|
|
sans-serif;
|
2026-02-27 21:54:38 +00:00
|
|
|
font-size: 13px;
|
|
|
|
|
color: var(--color-surface);
|
|
|
|
|
background: var(--color-canvas);
|
|
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
}
|
2026-02-28 19:39:33 +00:00
|
|
|
|
2026-02-28 19:41:34 +00:00
|
|
|
input[type='number'] {
|
2026-02-28 19:39:33 +00:00
|
|
|
appearance: textfield;
|
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-28 19:41:34 +00:00
|
|
|
input[type='number']::-webkit-inner-spin-button,
|
|
|
|
|
input[type='number']::-webkit-outer-spin-button {
|
2026-02-28 19:39:33 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|