17 lines
211 B
SCSS
17 lines
211 B
SCSS
$headerHeight: 75px;
|
|
|
|
.navbar-brand {
|
|
width: 50px;
|
|
height: auto;
|
|
}
|
|
|
|
.navbar-right {
|
|
margin: 0 0 0 auto;
|
|
}
|
|
|
|
.navbar {
|
|
height: $headerHeight;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|