Revert typo for font size. Fix font size on mobile?
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cassowary Rusnov 2022-12-29 11:56:43 -08:00
parent 14696acc70
commit 5e8b85b658
1 changed files with 8 additions and 3 deletions

View File

@ -68,11 +68,11 @@ body.home > div#page header#masthead {
body.home > div#page article header { body.home > div#page article header {
display: none; display: none;
} }
639
body.home > div#page article div.entry-content { body.home > div#page article div.entry-content {
color: white; color: white;
font-weight: var(--weight-bold); font-weight: var(--weight-bold);
font-size: var(--font-size-xlarge); font-size: var(--font-size-normal);
} }
body.home form#search-form { body.home form#search-form {
@ -227,12 +227,17 @@ footer#colophon .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-col
} }
@media (min-width: 640px) { @media (min-width: 640px) {
header#masthead { header#masthead {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }
body.home > div#page article div.entry-content {
color: white;
font-weight: var(--weight-bold);
font-size: var(--font-size-xlarge);
}
body.home > div#page header#masthead { body.home > div#page header#masthead {
margin-bottom: 15vh; margin-bottom: 15vh;
} }