squash and nuke dev

This commit is contained in:
outfoxxed 2026-02-18 02:40:40 -08:00
parent 1f1444eb65
commit e42985d6e6
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
93 changed files with 33825 additions and 7830 deletions

View file

@ -1,7 +1,7 @@
.accordion {
& summary {
list-style: none;
transition: background-color 0.15s ease-out;
transition: background-color var(--theme-transition);
}
& .accordion-container {
@ -12,7 +12,9 @@
& .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;
transition:
min-height 0.3s ease,
max-height 0.3s ease;
min-height: var(--height);
max-height: var(--height);
}