Files
browser-recall/app/static/css/main.css
2025-01-25 23:54:03 -06:00

34 lines
605 B
CSS

/* Custom styles can be added here */
.active-nav-link {
border-color: #60a5fa;
color: #60a5fa;
}
/* Add smooth transitions for hover effects */
.hover\:border-primary {
transition: border-color 0.2s ease-in-out;
}
/* Custom scrollbar styles */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #60a5fa;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #3b82f6;
}
/* Dark mode input styles */
input[type="date"]::-webkit-calendar-picker-indicator {
filter: invert(1);
opacity: 0.5;
}