moved lineawesome fonts from global.less to custom _style.less to avoid overwritting with new versions

This commit is contained in:
muppeth 2022-09-06 14:24:30 +02:00
parent 82e4f7f9ff
commit 77ad3d54cf
Signed by: muppeth
GPG Key ID: 0EBC7B9848D04031
2 changed files with 18 additions and 1 deletions

View File

@ -29,3 +29,20 @@
& when (@dark-mode-enabled = true) {
@import "_dark";
}
/*** Fonts ***/
@font-face {
font-family: 'Icons';
font-style: normal;
font-weight: 900;
src: url("../fonts/la-solid-900.woff2") format('woff2'),
url("../fonts/la-solid-900.woff") format('woff');
}
@font-face {
font-family: 'Icons';
font-style: normal;
font-weight: 400;
src: url("../fonts/la-regular-400.woff2") format('woff2'),
url("../fonts/la-regular-400.woff") format('woff');
}

File diff suppressed because one or more lines are too long