Files
karma/ui/src/Fonts.scss
Łukasz Mierzwa a3be6e9a7f fix(ui): cleanup scss variable imports
All scss imports needs to use App.scss, otherwise some overrides won't be present, like font swap Lato -> Open Sans
2019-08-03 18:29:27 +01:00

16 lines
663 B
SCSS

// this is used by bootswatch to import the font, we bundle all fonts so there
// is nothing to import
// https://github.com/thomaspark/bootswatch/issues/55
$web-font-path: "data:text/css;base64,";
// Default for Bootstrap is 700 and it's a bit too thick for Open Sans
$font-weight-bold: 600;
// this is vaniall flatly but Lato was replaced by Open Sans
// the rest was kept for fallback used by "font-display: swap;"
$font-family-sans-serif: "Open Sans", -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol" !default;
@import "~typeface-open-sans/index.css";