mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
42 lines
774 B
CSS
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);
|
|
}
|