mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-15 06:10:36 -06:00
25 lines
390 B
CSS
25 lines
390 B
CSS
.collapsible__content {
|
|
overflow: hidden;
|
|
animation: slideUp 300ms ease-out;
|
|
}
|
|
.collapsible__content[data-expanded] {
|
|
animation: slideDown 300ms ease-out;
|
|
}
|
|
|
|
@keyframes slideDown {
|
|
from {
|
|
height: 0;
|
|
}
|
|
to {
|
|
height: var(--kb-collapsible-content-height);
|
|
}
|
|
}
|
|
@keyframes slideUp {
|
|
from {
|
|
height: var(--kb-collapsible-content-height);
|
|
}
|
|
to {
|
|
height: 0;
|
|
}
|
|
}
|