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-01-29 20:28:11 +03:00
|
|
|
// #853 start - https://github.com/twbs/bootstrap/pull/18976/files
|
|
|
|
@if $enable-flex {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
flex-shrink: 0;
|
|
|
|
align-items: center;
|
|
|
|
align-self: stretch;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
} @else {
|
|
|
|
@include clearfix;
|
|
|
|
}
|
|
|
|
// #853 end - https://github.com/twbs/bootstrap/pull/18976/files
|
2016-01-26 21:12:48 +03:00
|
|
|
}
|
2016-08-01 13:01:15 +03:00
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
.nav-item {
|
|
|
|
position: relative; // used to correctly size ripple container
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar > .container {
|
|
|
|
flex: 1;
|
|
|
|
}
|