Retrospring/app/assets/stylesheets/components/_navbar.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
339 B
SCSS
Raw Normal View History

2023-01-11 12:48:15 -08:00
.navbar-dev {
2023-01-11 13:15:03 -08:00
&.fixed-top:before {
top: 0;
}
2023-01-11 12:48:15 -08:00
&:before {
@extend .progress-bar-striped;
@extend .bg-warning;
content: "";
position: absolute;
bottom: 0;
height: 4px;
width: 100%;
background-size: 40px 40px;
2023-01-11 12:48:15 -08:00
@include media-breakpoint-up('md') {
bottom: unset;
top: 0;
}
}
}