0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Fixed accent color background in email callout cards

Refs https://github.com/TryGhost/Team/issues/1206
This commit is contained in:
Sanne de Vries 2021-11-22 10:45:03 +01:00
parent f0ae7592cf
commit 969921f444

View file

@ -602,7 +602,11 @@ figure blockquote p {
}
.kg-card-callout-accent {
background: var(--ghost-accent-color);
background: ${templateSettings.accentColor || '#15212A'};
color: #fff;
}
.kg-card-callout-accent a {
color: #fff;
}