mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:29:52 +01:00
22 lines
339 B
SCSS
22 lines
339 B
SCSS
.navbar-dev {
|
|
&.fixed-top:before {
|
|
top: 0;
|
|
}
|
|
|
|
&:before {
|
|
@extend .progress-bar-striped;
|
|
@extend .bg-warning;
|
|
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: 4px;
|
|
width: 100%;
|
|
background-size: 40px 40px;
|
|
|
|
@include media-breakpoint-up('md') {
|
|
bottom: unset;
|
|
top: 0;
|
|
}
|
|
}
|
|
}
|