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

Fixed space issue

This commit is contained in:
Peter Zimon 2024-10-21 15:02:30 +02:00 committed by Aileen Booker
parent cb462dfb21
commit 366c210783

View file

@ -109,6 +109,9 @@ export function generateCustomFontBodyClass(fonts: FontSelection) {
if (fonts?.heading) {
bodyClass += `gh-font-heading-${classFontNames[fonts.heading]}`;
if (fonts?.body) {
bodyClass += ' ';
}
}
if (fonts?.body) {