22 lines
452 B
CSS
22 lines
452 B
CSS
/* Slides Sidebar Component - Minimal overrides using semantic classes */
|
|
|
|
/* Component-specific layout only */
|
|
.slide-sidebar {
|
|
width: 240px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100%;
|
|
}
|
|
|
|
/* Custom hover state for accent button */
|
|
.slide-sidebar .bg-accent:hover:not(:disabled) {
|
|
background: var(--text-link-hover);
|
|
}
|
|
|
|
/* Responsive behavior for mobile */
|
|
@media (max-width: 768px) {
|
|
.slide-sidebar {
|
|
width: 200px;
|
|
}
|
|
}
|