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:
parent
33c5ce057c
commit
3771b2fca4
1 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue