_closed_menu.scss 858 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/* Start Closed-Menu Styles */
[data-vertical-style="closed"] {
  @media screen and (min-width: 992px) {
    &[toggled="close-menu-close"] {
      .app-sidebar {
        @apply hidden;
      }
      &[dir="ltr"] {
        .content {
          @apply ml-0;
        }
        .header {
          @apply pl-0;
        }
      }
      &[dir="rtl"] {
        .content {
          @apply mr-0;
        }
        .header {
          @apply pr-0;
        }
      }
    }
    &[toggled="close-menu-open"] {
      .app-sidebar {
        @apply block;
      }
      &[dir="ltr"] {
        .content {
          @apply ml-64;
        }
        .header {
          @apply pl-64;
        }
      }
      &[dir="rtl"] {
        .content {
          @apply mr-64;
        }
        .header {
          @apply pr-64;
        }
      }
    }
  }
}
/* End Closed-Menu Styles */