Fix font-family variable
There was 1 quotation mark to much at the end of the font-family variable which was causing some browsers to fall back to the default font face -which was not the default font face of haldis.
This commit is contained in:
parent
2d97bdd4a0
commit
c0936d5a45
1 changed files with 3 additions and 3 deletions
|
@ -62,7 +62,7 @@
|
|||
root.style.setProperty('--dGray1', "#666666");
|
||||
root.style.setProperty('--dGray0', "#444444"); //Light color
|
||||
root.style.setProperty('--dBlue', "#0A84FF");
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif"');
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif');
|
||||
root.style.setProperty('--FontSize', '13px');
|
||||
document.querySelector('.background').style.backgroundImage = 'none';
|
||||
}
|
||||
|
@ -77,7 +77,7 @@
|
|||
root.style.setProperty('--dGray1', "#8E8E93");
|
||||
root.style.setProperty('--dGray0', "#E0E0E8"); //Light color
|
||||
root.style.setProperty('--dBlue', "#0A84FF");
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif"');
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif');
|
||||
root.style.setProperty('--FontSize', '13px');
|
||||
document.querySelector('.background').style.backgroundImage = 'none';
|
||||
}
|
||||
|
@ -92,7 +92,7 @@
|
|||
root.style.setProperty('--dGray1', "#F28705");
|
||||
root.style.setProperty('--dGray0', "#FFEB65"); //Light color
|
||||
root.style.setProperty('--dBlue', "#D91604");
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif"');
|
||||
root.style.setProperty('--FontFamily', '"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif');
|
||||
root.style.setProperty('--FontSize', '13px');
|
||||
document.querySelector('.background').backgroundImage = "url('/static/images/Halloween.jpeg')";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue