saq1b's picture
Create static/custom.css
1dcfc18 verified
raw
history blame
700 Bytes
.hover-scale {
transition: transform 0.2s ease-in-out;
}
.hover-scale:hover {
transform: scale(1.02);
}
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #888;
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Dark mode scrollbar */
.dark .custom-scrollbar::-webkit-scrollbar-track {
background: #1f2937;
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
background: #4b5563;
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}