nitropage
Version:
A free and open source, extensible visual page builder based on SolidStart.
30 lines (25 loc) • 426 B
CSS
.content {
animation: slideUp 150ms var(--np-ease-out-expo);
}
.content[data-expanded] {
animation: slideDown 150ms var(--np-ease-out-expo);
}
.content[data-animating] {
overflow: hidden;
}
@keyframes slideDown {
from {
height: 0;
}
to {
height: var(--kb-collapsible-content-height);
}
}
@keyframes slideUp {
from {
height: var(--kb-collapsible-content-height);
}
to {
height: 0;
}
}