45 lines
766 B
SCSS
Executable file
45 lines
766 B
SCSS
Executable file
//
|
|
// Header
|
|
// - Project Specific
|
|
// - edits should be made here
|
|
// --------------------------------------------------
|
|
|
|
#header {
|
|
flex-shrink:0;
|
|
|
|
.navbar-brand {
|
|
.logo{
|
|
width: $project-logo-width;
|
|
padding-left: 50px;
|
|
font-size: 0;
|
|
text-transform: uppercase;
|
|
background: image-url('logo-header.svg') 0 0 no-repeat;
|
|
background-position: 0 46%;
|
|
background-size: contain;
|
|
}
|
|
}
|
|
|
|
.by-hashicorp{
|
|
@include project-by-hashicorp-style();
|
|
}
|
|
|
|
.buttons{
|
|
margin-top: 2px; //baseline everything
|
|
}
|
|
}
|
|
|
|
@media (max-width: 414px) {
|
|
#header {
|
|
.navbar-brand {
|
|
.logo{
|
|
width: $project-logo-width * .8;
|
|
|
|
img{
|
|
//width: 72px;
|
|
//height: 14px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|