20 lines
338 B
CSS
20 lines
338 B
CSS
|
|
.collapsable-sections {
|
||
|
|
background-color: var(--color-yellow);
|
||
|
|
}
|
||
|
|
|
||
|
|
.collapsable button.toggle {
|
||
|
|
width: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
.collapsable__content {
|
||
|
|
max-height: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
transition: max-height 0.5s ease-in-out;
|
||
|
|
}
|
||
|
|
.collapsable__content {
|
||
|
|
max-height: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|