ie.scss 353 B

123456789101112131415
  1. #app-sidebar {
  2. position: fixed !important;
  3. }
  4. #app-content {
  5. min-width: $navigation-width !important;
  6. /**
  7. * set min height so the container will grow in IE11
  8. * https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11
  9. */
  10. min-height: calc(100vh - 50px);
  11. }
  12. #app-sidebar.disappear {
  13. right: -$sidebar-max-width !important;
  14. }