mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-14 05:37:01 +03:00
24 lines
481 B
SCSS
24 lines
481 B
SCSS
.navbar {
|
|
z-index: 1; // required to make the shadow overlap the below content (need is visible in mobile drawer overlay)
|
|
border: 0;
|
|
border-radius: 0;
|
|
@include box-shadow($bmd-shadow-2dp);
|
|
|
|
// give correct size to ripple container
|
|
.navbar-brand {
|
|
position: relative;
|
|
}
|
|
|
|
> .container {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
// Needed to properly style inputs on dark background
|
|
.navbar-dark .form-control {
|
|
color: $white;
|
|
&::placeholder {
|
|
color: $navbar-dark-color;
|
|
}
|
|
}
|