mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
35 lines
843 B
SCSS
35 lines
843 B
SCSS
@import "breakpoints.scss";
|
|
.nav-osem {
|
|
border: none;
|
|
@include breakpoint(xs) {
|
|
.navbar-collapse {
|
|
background-color: white;
|
|
border-bottom: 2px solid #efefef;
|
|
}
|
|
.navbar-nav > li > a {
|
|
color: black;
|
|
}
|
|
.navbar-collapse.in {
|
|
overflow: hidden;
|
|
max-height: none;
|
|
}
|
|
.navbar-toggle .icon-bar {
|
|
background-color: white;
|
|
}
|
|
.navbar-nav .open .dropdown-toggle:focus {
|
|
color: black;
|
|
background-color: #eeeeee;
|
|
}
|
|
.btn-group {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.navbar-nav .open .dropdown-menu > li > a {
|
|
color: black;
|
|
}
|
|
}
|
|
.dropdown-menu {
|
|
padding: 17px;
|
|
min-width: 225px;
|
|
}
|
|
}
|