You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/website/components/openapi-page/partials/collapsible/collapsible.module.css

19 lines
253 B

.outer {
overflow: hidden;
height: 0;
&[data-useanimation='true'] {
transition: height 0.4s;
}
}
.inner {
opacity: 1;
&[data-iscollapsed='true'] {
opacity: 0;
}
&[data-useanimation='true'] {
transition: opacity 0.4s;
}
}