38 lines
764 B
CSS
38 lines
764 B
CSS
/* Import Claude theme from mini-lit */
|
|
@import "@mariozechner/mini-lit/styles/themes/default.css";
|
|
|
|
/* Tell Tailwind to scan mini-lit components */
|
|
@source "../../../node_modules/@mariozechner/mini-lit/dist";
|
|
|
|
/* Import Tailwind */
|
|
/* biome-ignore lint/correctness/noInvalidPositionAtImportRule: fuck you */
|
|
@import "tailwindcss";
|
|
|
|
body {
|
|
font-size: 16px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--color-border) rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: var(--color-border);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|