Files
feishin/src/renderer/features/sidebar/components/mobile-sidebar.module.css
T
2026-04-04 18:25:04 -07:00

42 lines
774 B
CSS

.container {
display: flex;
flex-direction: column;
gap: var(--mantine-spacing-xs);
width: 100%;
height: 100%;
background: var(--theme-colors-background-alternate);
}
.scroll-area {
flex: 1;
min-height: 0;
padding: 0 var(--theme-spacing-md) var(--theme-spacing-md) var(--theme-spacing-md);
}
.accordion-root {
height: 100%;
}
.accordion-item {
border-bottom: none;
}
.accordion-control {
height: auto;
min-height: 2.5rem;
border-radius: var(--theme-radius-md);
&:hover {
background: var(--theme-colors-background);
}
}
.accordion-content {
padding: 0;
background: var(--theme-colors-background-alternate);
}
.accordion-content:last-child {
padding-bottom: var(--theme-spacing-md);
}