Escape apostrophes in scss variables

the apostrophes in the ms-serif-font variable generates an invalid attribute
This breaks the loyalty symbols
This commit is contained in:
Lisstem 2021-09-16 12:57:15 +02:00 committed by GitHub
parent ce1831695d
commit 6495143eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ $ms-font-path: '../fonts' !default;
$ms-version: '1.14.0' !default;
$ms-font-size-base: 14px !default;
$ms-prefix: ms !default;
$ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif' !default;
$ms-serif-font: 'MPlantin, Garamond, Palatino, \'Times New Roman\', Times, serif' !default;
// mana colors
$ms-border-black: #010101;