mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 04:07:55 +03:00
23 lines
559 B
SCSS
23 lines
559 B
SCSS
.navbar {
|
|
margin-bottom: .25rem; // required to provide space for the shadow to render (need is visible in mobile drawer overlay)
|
|
border: 0;
|
|
border-radius: 0;
|
|
@include box-shadow($mdb-shadow-2dp);
|
|
|
|
// #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
|
|
}
|