main.scss 424 B

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