Files
squoosh/src/components/compress/custom-els/MultiPanel/styles.css
2018-11-06 13:37:08 +00:00

12 lines
159 B
CSS

.panel-heading {
background:gray;
}
.panel-content {
height:0px;
overflow:scroll;
transition: height 1s;
}
.panel-content[expanded] {
height:auto;
}