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
1 changed files with 2 additions and 2 deletions

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;
@ -22,4 +22,4 @@ $ms-green: #3d684b;
// colors
$ms-multicolor-flat: #cca753;
$ms-multicolor-grad: linear-gradient(45deg, #cca54f 0%, #e0d3bb 50%, #cca54f 100%);
$ms-ability-grad: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%);
$ms-ability-grad: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%);