style: newsletter signup form

This commit is contained in:
dragonwocky 2023-12-28 09:36:47 +11:00
parent 585eac4ced
commit 11088f8f24
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 26 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -99,6 +99,11 @@ body:not(.home-template) {
--announcement-bar-height: 0 !important; --announcement-bar-height: 0 !important;
} }
/* keep footer lines tight */
.m-footer-copyright {
line-height: 1 !important;
}
/* disable fade down animation on nav */ /* disable fade down animation on nav */
.m-header { .m-header {
--show-fade-animation: 0; --show-fade-animation: 0;
@ -203,6 +208,26 @@ body:not(.home-template) {
} }
} }
/* newsletter signup form */
@include respond-to("medium") {
.newsletter-subscription {
display: flex;
> div {
flex-grow: 1;
.m-input {
margin: 0 !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
}
.m-button {
width: 10rem !important;
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
}
}
/* featured post cards with images: avoid cropping + hide titles */ /* featured post cards with images: avoid cropping + hide titles */
.m-featured-article:not(.no-picture) { .m-featured-article:not(.no-picture) {
.m-featured-article__picture { .m-featured-article__picture {