Only use woff2 for fonts
This commit is contained in:
parent
96bb360d9f
commit
fa40cbc3b2
|
@ -4,8 +4,7 @@
|
||||||
$icon-font-path: '../../node_modules/bootstrap-sass/assets/fonts/bootstrap/';
|
$icon-font-path: '../../node_modules/bootstrap-sass/assets/fonts/bootstrap/';
|
||||||
@import '_bootstrap';
|
@import '_bootstrap';
|
||||||
|
|
||||||
$FontPathSourceSansPro: '../../node_modules/npm-font-source-sans-pro/fonts';
|
@import '_fonts';
|
||||||
@import '~npm-font-source-sans-pro/source-sans-pro';
|
|
||||||
|
|
||||||
@import '~primeng/resources/themes/bootstrap/theme.css';
|
@import '~primeng/resources/themes/bootstrap/theme.css';
|
||||||
@import '~primeng/resources/primeng.css';
|
@import '~primeng/resources/primeng.css';
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
$FontPathSourceSansPro: '../../node_modules/npm-font-source-sans-pro/fonts';
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
font-stretch: normal;
|
||||||
|
src: url('#{$FontPathSourceSansPro}/WOFF2/TTF/SourceSansPro-Regular.ttf.woff2') format('woff2'),
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
font-stretch: normal;
|
||||||
|
src: url('#{$FontPathSourceSansPro}/WOFF2/TTF/SourceSansPro-It.ttf.woff2') format('woff2'),
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
font-stretch: normal;
|
||||||
|
src: url('#{$FontPathSourceSansPro}/WOFF2/TTF/SourceSansPro-Semibold.ttf.woff2') format('woff2'),
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: italic;
|
||||||
|
font-stretch: normal;
|
||||||
|
src: url('#{$FontPathSourceSansPro}/WOFF2/TTF/SourceSansPro-SemiboldIt.ttf.woff2') format('woff2'),
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
font-stretch: normal;
|
||||||
|
src: url('#{$FontPathSourceSansPro}/WOFF2/TTF/SourceSansPro-Bold.ttf.woff2') format('woff2'),
|
||||||
|
}
|
Loading…
Reference in New Issue