Fixed z-index bug with header title/description
closes #363 - add z-index to `.site-title` and `.site-description` so they aren't covered by the header overlay
This commit is contained in:
parent
d2375a3917
commit
e4e6bb9c5a
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -160,6 +160,7 @@ body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 3.8rem;
|
font-size: 3.8rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-logo {
|
.site-logo {
|
||||||
|
@ -173,6 +174,7 @@ body {
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 500px) {
|
@media (max-width: 500px) {
|
||||||
|
|
Loading…
Reference in New Issue