import scrollbar

This commit is contained in:
Julian Freeman
2026-01-19 14:52:54 -04:00
parent a01277a11c
commit 99c442663a

View File

@@ -6,3 +6,23 @@
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
/* Custom scrollbar styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background-color: #1f2937; /* gray-800 */
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: #4b5563; /* gray-600 */
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #6b7280; /* gray-500 */
}