tracks lexicons and how many times they appeared on the jetstream
1@import "tailwindcss";
2
3/* Make scrollbar overlay without affecting layout */
4html {
5 scrollbar-width: thin;
6}
7
8/* Webkit browsers (Chrome, Safari, Edge) */
9::-webkit-scrollbar {
10 width: 8px;
11}
12
13::-webkit-scrollbar-track {
14 background: transparent;
15}
16
17::-webkit-scrollbar-thumb {
18 background: rgba(0, 0, 0, 0.3);
19 border-radius: 4px;
20}
21
22::-webkit-scrollbar-thumb:hover {
23 background: rgba(0, 0, 0, 0.5);
24}
25
26/* Ensure scrollbar doesn't take up layout space */
27body {
28 overflow-y: overlay;
29 overflow-y: auto; /* Fallback for browsers that don't support overlay */
30}