mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-15 10:09:45 +00:00
12 lines
159 B
CSS
12 lines
159 B
CSS
.panel-heading {
|
|
background:gray;
|
|
}
|
|
.panel-content {
|
|
height:0px;
|
|
overflow:scroll;
|
|
transition: height 1s;
|
|
}
|
|
.panel-content[expanded] {
|
|
height:auto;
|
|
}
|