Completed template

This commit is contained in:
adilallo
2026-03-02 22:12:50 -07:00
parent d811b87b12
commit 3e3d2881f5
103 changed files with 1410 additions and 622 deletions
+7 -7
View File
@@ -18,31 +18,31 @@
/* Design system scrollbar (Figma node 20612-36521): dark track + thumb with states */
.scrollbar-design {
scrollbar-width: thin; /* Firefox: narrow scrollbar */
scrollbar-color: #545B64 #292D32; /* Firefox: thumb track */
scrollbar-color: #545b64 #292d32; /* Firefox: thumb track */
}
.scrollbar-design::-webkit-scrollbar {
width: 16px;
height: 16px;
}
.scrollbar-design::-webkit-scrollbar-track {
background: #292D32;
background: #292d32;
}
.scrollbar-design::-webkit-scrollbar-thumb {
background: #545B64;
background: #545b64;
border-radius: 4px;
border: 4px solid #292D32; /* visual padding: thumb appears 8px within 16px track */
border: 4px solid #292d32; /* visual padding: thumb appears 8px within 16px track */
background-clip: padding-box;
}
.scrollbar-design::-webkit-scrollbar-thumb:hover {
background: #787F8A;
background: #787f8a;
border-width: 2px; /* hover: thumb expands to 12px */
}
.scrollbar-design::-webkit-scrollbar-thumb:active {
background: #3F434C;
background: #3f434c;
border-width: 2px;
}
.scrollbar-design::-webkit-scrollbar-corner {
background: #292D32;
background: #292d32;
}
@theme inline {