youtu.be/S2xHZPH5Sng
youtu.be/S2xHZPH5Sng
```css
.expandable {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 250ms ease-out;
&.open {
grid-template-rows: 1fr;
}
}
```
```css
.expandable {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 250ms ease-out;
&.open {
grid-template-rows: 1fr;
}
}
```