mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 09:24:24 +04:00
16 lines
553 B
SCSS
16 lines
553 B
SCSS
@if $font-google {
|
|
$google-font-url: 'https://fonts.googleapis.com/css2?family=' + str-replace($font-google, ' ', '+') + ':wght@300;400;500;600;700&display=swap' !default;
|
|
@import url($google-font-url);
|
|
}
|
|
|
|
@if $font-google-monospaced {
|
|
$google-font-monospaced-url: 'https://fonts.googleapis.com/css2?family=' + str-replace($font-google-monospaced, ' ', '+') + ':wght@300;400;500;600;700&display=swap' !default;
|
|
@import url($google-font-monospaced-url);
|
|
}
|
|
|
|
@if $font-icons {
|
|
@each $icon-font in $font-icons {
|
|
@import url($icon-font);
|
|
}
|
|
}
|