No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_content.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .main-content {
  2. position: relative;
  3. // Navbar
  4. .navbar-top {
  5. position: absolute;
  6. left: 0;
  7. top: 0;
  8. width: 100%;
  9. z-index: 1;
  10. background-color: transparent;
  11. padding-left: 0 !important;
  12. padding-right: 0 !important;
  13. }
  14. // Container
  15. .container-fluid {
  16. @include media-breakpoint-up(md) {
  17. padding-left: ($main-content-padding-x + $grid-gutter-width / 2) !important;
  18. padding-right: ($main-content-padding-x + $grid-gutter-width / 2) !important;
  19. }
  20. }
  21. }
  22. // Offsets the main content depending on the sidebar positioning
  23. .navbar-vertical.navbar-expand {
  24. @each $breakpoint,
  25. $dimension in $grid-breakpoints {
  26. &-#{$breakpoint} {
  27. @include media-breakpoint-up(#{$breakpoint}) {
  28. // Left
  29. &.fixed-left + .main-content {
  30. margin-left: $navbar-vertical-width;
  31. } // Right
  32. &.fixed-right + .main-content {
  33. margin-right: $navbar-vertical-width;
  34. }
  35. }
  36. }
  37. }
  38. }