_flex-expand.scss 335 B

12345678910111213141516171819202122232425
  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. height: 100%;
  15. overflow-y: auto;
  16. }
  17. .flex-expand-vert {
  18. height: 100%;
  19. overflow-y: hidden;
  20. }
  21. }