mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-27 15:05:38 -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: [{
|
style: [{
|
||||||
textContent:
|
textContent:
|
||||||
`:root {
|
`:root {
|
||||||
--font-headings: ${config.style.fontHeadings.join(', ')};
|
--font-headings: ${config.style.fontHeadings.map((font) => `'${font}'`).join(',')};
|
||||||
--font-text: ${config.style.fontText.join(', ')};
|
--font-text: ${config.style.fontText.map((font) => `'${font}'`).join(',')};
|
||||||
}`,
|
}`,
|
||||||
}],
|
}],
|
||||||
link: [
|
link: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user