mirror of
https://github.com/heyman/heynote.git
synced 2024-12-11 09:11:31 +01:00
5 lines
295 B
SCSS
5 lines
295 B
SCSS
|
@mixin fontdef($OpenSansPath, $OpenSansVersion, $FontType:"Regular") {
|
||
|
src: url('#{$OpenSansPath}/#{$FontType}/OpenSans-#{$FontType}.woff2?v=#{$OpenSansVersion}') format('woff2'),
|
||
|
url('#{$OpenSansPath}/#{$FontType}/OpenSans-#{$FontType}.woff?v=#{$OpenSansVersion}') format('woff');
|
||
|
}
|