2016-01-26 21:12:48 +03:00
|
|
|
.navbar {
|
2016-08-01 13:01:15 +03:00
|
|
|
z-index: 1; // required to make the shadow overlap the below content (need is visible in mobile drawer overlay)
|
2016-01-26 21:12:48 +03:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
2016-03-28 23:18:19 +03:00
|
|
|
@include box-shadow($bmd-shadow-2dp);
|
2016-01-26 21:12:48 +03:00
|
|
|
|
2016-08-02 22:25:48 +03:00
|
|
|
// give correct size to ripple container
|
|
|
|
.navbar-brand {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-08-02 21:44:55 +03:00
|
|
|
> .container {
|
|
|
|
flex: 1;
|
2016-08-01 13:01:15 +03:00
|
|
|
}
|
|
|
|
}
|
2017-12-10 19:49:47 +03:00
|
|
|
|
|
|
|
// Needed to properly style inputs on dark background
|
|
|
|
.navbar-dark .form-control {
|
|
|
|
color: $white;
|
|
|
|
&::placeholder {
|
|
|
|
color: $navbar-dark-color;
|
|
|
|
}
|
|
|
|
}
|