_layout.scss 732 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. body, html{
  2. position: relative;
  3. width: 100%;
  4. height:100%;
  5. font-family: sans-serif;
  6. font-style: normal;
  7. margin:0;
  8. padding:0;
  9. }
  10. body{
  11. overflow:hidden;
  12. }
  13. #root{
  14. display: flex;
  15. flex-direction: column;
  16. width: 100vw;
  17. height:100vh;
  18. %layout-element{
  19. width:100vw;
  20. box-sizing:border-box;
  21. }
  22. header[role="banner"]{
  23. flex: 0 0 auto;
  24. @extend %layout-element;
  25. padding:1em 1em 0 1em;
  26. }
  27. section[role="main-content"]{
  28. flex:1 1 auto;
  29. @extend %layout-element;
  30. padding:0 1em 0 1em;
  31. overflow-y: auto;
  32. overflow-x: hidden;
  33. }
  34. footer[role="tools"]{
  35. flex:0 0 auto;
  36. @extend %layout-element;
  37. // padding-bottom: 1em;
  38. // >*{
  39. // padding:0.5em 1em;
  40. // }
  41. }
  42. }