| 123456789101112131415161718192021 |
- .flex-expand-horiz {
- display: flex;
- flex-direction: row;
- flex-grow: 1;
- }
- .flex-expand-vert {
- display: flex;
- flex: 1;
- flex-direction: column;
- }
- .flex-expand-vh-100 {
- height: 100vh;
- .flex-expand-horiz,
- .flex-expand-vert {
- height: 100%;
- overflow-y: auto;
- }
- }
|