mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 21:31:28 +04:00
18 lines
577 B
SCSS
18 lines
577 B
SCSS
@use '../config' as *;
|
|
|
|
@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);
|
|
}
|
|
}
|