mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-25 22:19:28 -04:00
(style) fix font names containing spaces
This commit is contained in:
parent
90779c4de2
commit
9555dc1fef
4
app.vue
4
app.vue
@ -20,8 +20,8 @@ useHead({
|
||||
style: [{
|
||||
textContent:
|
||||
`:root {
|
||||
--font-headings: ${config.style.fontHeadings.join(', ')};
|
||||
--font-text: ${config.style.fontText.join(', ')};
|
||||
--font-headings: ${config.style.fontHeadings.map((font) => `'${font}'`).join(',')};
|
||||
--font-text: ${config.style.fontText.map((font) => `'${font}'`).join(',')};
|
||||
}`,
|
||||
}],
|
||||
link: [
|
||||
|
Loading…
x
Reference in New Issue
Block a user