quickshell-web/src/styles/components/accordion.css
2024-10-24 16:26:48 -07:00

19 lines
464 B
CSS

.accordion {
& summary {
list-style: none;
transition: background-color 0.15s ease-out;
}
& .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);
}
}