mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-06 15:17:58 +08:00
44 lines
788 B
CSS
44 lines
788 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: 'General-Sans';
|
|
src: url('/fonts/GeneralSans-Variable.woff2') format('woff2');
|
|
font-weight: 200 700;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|
|
|
|
body,
|
|
nav {
|
|
--sb-track-color: #171717;
|
|
--sb-thumb-color: #404040;
|
|
--sb-size: 10px;
|
|
scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
width: var(--sb-size);
|
|
}
|
|
|
|
body::-webkit-scrollbar-track {
|
|
background: var(--sb-track-color);
|
|
}
|
|
|
|
body::-webkit-scrollbar-thumb {
|
|
background: var(--sb-thumb-color);
|
|
}
|
|
|
|
nav::-webkit-scrollbar {
|
|
width: var(--sb-size);
|
|
}
|
|
|
|
nav::-webkit-scrollbar-track {
|
|
background: var(--sb-track-color);
|
|
}
|
|
|
|
nav::-webkit-scrollbar-thumb {
|
|
background: var(--sb-thumb-color);
|
|
}
|