quickshell-web/src/styles/components/accordion.css
2026-04-02 23:13:53 -07:00

21 lines
485 B
CSS

.accordion {
& summary {
list-style: none;
transition: background-color var(--theme-transition);
}
& .accordion-container {
/* fixes jumps due to margins on inline items */
display: flex;
flex-direction: column;
}
& .accordion-container.animate {
/* this somehow breaks if both min AND max aren't animated */
transition:
min-height 0.3s ease,
max-height 0.3s ease;
min-height: var(--height);
max-height: var(--height);
}
}