layout-mobile break-point md to lg

pull/3729/head
Daniel 2021-05-19 09:22:17 +05:30
parent a82603dc37
commit a337965c33
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
@include media-breakpoint-up(md) { @include media-breakpoint-up(lg) {
.layout-fixed:not(.sidebar-horizontal) { .layout-fixed:not(.sidebar-horizontal) {
// .main-brand { // .main-brand {
// bottom: 0; // bottom: 0;

View File

@ -1,4 +1,4 @@
@include media-breakpoint-down(md) { @include media-breakpoint-down(lg) {
.wrapper { .wrapper {
// grid-template-areas: // grid-template-areas:
// "main-sidebar main-header" // "main-sidebar main-header"

View File

@ -1,4 +1,4 @@
@include media-breakpoint-up(md) { @include media-breakpoint-up(lg) {
.sidebar-horizontal { .sidebar-horizontal {
.wrapper { .wrapper {
grid-template-areas: grid-template-areas:

View File

@ -22,7 +22,7 @@
} }
} }
@include media-breakpoint-down(md) { @include media-breakpoint-down(lg) {
.main-header { .main-header {
background-color: $header-mobile-bg; background-color: $header-mobile-bg;
color: $header-mobile-color; color: $header-mobile-color;

View File

@ -25,7 +25,7 @@ const SELECTOR_SIDEBAR_SM = `.${CLASS_NAME_LAYOUT_MOBILE}`
const SELECTOR_CONTENT_WRAPPER = '.content-wrapper' const SELECTOR_CONTENT_WRAPPER = '.content-wrapper'
const Defaults = { const Defaults = {
onLayouMobile: 768 onLayouMobile: 992
} }
class SidebarOverlay { class SidebarOverlay {