_flex-expand.scss 287 B

123456789101112131415161718192021
  1. .flex-expand-horiz {
  2. display: flex;
  3. flex-direction: row;
  4. flex-grow: 1;
  5. }
  6. .flex-expand-vert {
  7. display: flex;
  8. flex: 1;
  9. flex-direction: column;
  10. }
  11. .flex-expand-vh-100 {
  12. height: 100vh;
  13. .flex-expand-horiz,
  14. .flex-expand-vert {
  15. height: 100%;
  16. overflow-y: auto;
  17. }
  18. }