_flex-expand.scss 301 B

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