layout.scss 161 B

12345678910111213
  1. // Layout styles
  2. // Make document container height 100%
  3. html,
  4. body {
  5. height: 100%;
  6. }
  7. // Lock side nav width
  8. .col-side-nav {
  9. max-width: $side-nav-width;
  10. }