.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); } }