0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Fixed email footer text styling inconsistencies (#20063)

fixes
https://linear.app/tryghost/issue/DES-260/footer-link-text-smaller-than-regular-text

There was a bit of CSS in a media query aimed at other parts of the
newsletter template that was causing the footer styling to break. I
added some more specific styling for the footer as well, to make sure
span's within the `<p>` element are covered as well.
This commit is contained in:
Daniël van der Winden 2024-04-22 15:43:19 +02:00 committed by GitHub
parent 33c5ce057c
commit 3771b2fca4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1283,7 +1283,7 @@ a[data-flickr-embed] img {
table.body ul,
table.body ol,
table.body td {
font-size: 16px !important;
font-size: 16px;
}
table.body pre {
@ -1388,14 +1388,14 @@ a[data-flickr-embed] img {
}
table.body .footer p {
font-size: 12px !important;
table.body .footer p, table.body .footer p span {
font-size: 13px !important;
}
table.body .view-online-link,
table.body .footer,
table.body .footer a {
font-size: 12px !important;
table.body .footer a, {
font-size: 13px !important;
}
table.body .post-title a {