Rework the about header size change to be based on the screen width, not the menu state

Also reworks to be mobile-first
This commit is contained in:
Andy Allan 2020-07-15 10:47:58 +02:00
parent 988446c307
commit 3f6fd290d7
2 changed files with 7 additions and 6 deletions

View file

@ -2211,12 +2211,18 @@ input.richtext_title[type="text"] {
display: block; display: block;
color: white; color: white;
font-weight: 300; font-weight: 300;
font-size: 34px; font-size: 28px;
span { span {
color: $vibrant-green; color: $vibrant-green;
} }
} }
@include media-breakpoint-up(sm) {
h1 {
font-size: 34px;
}
}
.user-image { .user-image {
position: absolute; position: absolute;
top: 0px; top: 0px;

View file

@ -120,11 +120,6 @@ body.small {
#login_openid_buttons td { #login_openid_buttons td {
padding: 2px; padding: 2px;
} }
&.site-about #content .attr h1 {
font-size: 28px;
}
} }
@media (max-width: 767.98px) { @media (max-width: 767.98px) {