main.scss 385 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import 'globals';
  2. @import 'bootstrap';
  3. html, body, #app {
  4. height: 100%;
  5. }
  6. main {
  7. height: calc(100vh - 56px);
  8. }
  9. // Layouts
  10. .view {
  11. display: flex;
  12. flex-direction: column;
  13. height: 100%;
  14. }
  15. .split-screen {
  16. display: flex;
  17. height: 100%;
  18. & > * {
  19. flex-basis: 50%;
  20. }
  21. }
  22. .container-fill {
  23. display: flex;
  24. flex-direction: column;
  25. width: 100%;
  26. height: 100%;
  27. }