34 lines
505 B
SCSS
34 lines
505 B
SCSS
.site-head {
|
|
padding-top: 3rem;
|
|
padding-bottom: 1.5rem;
|
|
|
|
&__inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
&__site-name {
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
color: var(--color-text);
|
|
|
|
&:focus {
|
|
outline-color: var(--color-secondary);
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1199.98px) {
|
|
.site-head {
|
|
&__inner {
|
|
display: block;
|
|
}
|
|
|
|
&__site-name {
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
}
|