23 lines
352 B
SCSS
23 lines
352 B
SCSS
body > header {
|
|
@extend .row;
|
|
|
|
padding-bottom: $spacer * 4;
|
|
|
|
.website-title {
|
|
@extend .col-8;
|
|
|
|
a {
|
|
font-size: $h1-font-size;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
nav {
|
|
@extend .col-4;
|
|
text-align: right;
|
|
|
|
a {
|
|
color: $text-muted !important;
|
|
}
|
|
}
|
|
}
|