19 lines
297 B
SCSS
19 lines
297 B
SCSS
|
.navbar-dev {
|
||
|
&:before {
|
||
|
@extend .progress-bar-striped;
|
||
|
@extend .bg-warning;
|
||
|
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
height: 4px;
|
||
|
width: 100%;
|
||
|
background-size: 4px 4px;
|
||
|
|
||
|
@include media-breakpoint-up('md') {
|
||
|
bottom: unset;
|
||
|
top: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|