75 lines
1.3 KiB
SCSS
75 lines
1.3 KiB
SCSS
.navbar-brand-wrapper {
|
|
background: #ffffff;
|
|
float: left;
|
|
text-align: center;
|
|
height: 70px;
|
|
position: relative;
|
|
width: 250px;
|
|
z-index: 1;
|
|
|
|
.logo-lg {
|
|
display: block;
|
|
}
|
|
|
|
.logo-sm {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.sidebar-collapsed .navbar-brand-wrapper {
|
|
width: 80px;
|
|
|
|
.logo-lg {
|
|
display: none;
|
|
}
|
|
|
|
.logo-sm {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.navbar {
|
|
border-top: 2px solid $primary;
|
|
background: #ffffff;
|
|
|
|
.navbar-toggler {
|
|
margin: 20px 0px;
|
|
}
|
|
|
|
.form-control {
|
|
padding: .75rem 1rem;
|
|
border-width: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.navbar-collapse {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
|
|
|
|
&.collapse.show,
|
|
&.collapsing {
|
|
display: flex;
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
height: 70px;
|
|
}
|
|
|
|
@include media-breakpoint-down(md) {
|
|
box-shadow: none;
|
|
border-top: 1px solid $body-bg;
|
|
}
|
|
}
|
|
|
|
.page-header {
|
|
border-right: 1px solid #e2e5ec;
|
|
font-weight: 400;
|
|
padding-right: 20px;
|
|
margin-right: 15px;
|
|
|
|
@include media-breakpoint-down(md) {
|
|
border-right: 0;
|
|
}
|
|
}
|
|
}
|