Move font files outside sass folder

This commit is contained in:
sonny 2020-06-03 20:10:19 +02:00
parent f9d49db12a
commit a99e3c1980
14 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,5 @@
@import './lib/index';
@import './partials/index';
@import './fonts/index';
@import './components/index';
@import './elements/index';

View file

@ -1,10 +1,10 @@
@font-face {
font-family: Rubik;
src: url('./fonts/Rubik-Regular.ttf');
src: url('../assets/fonts/Rubik-Regular.ttf');
}
@font-face {
font-family: Rubik;
src: url('./fonts/Rubik-Bold.ttf');
src: url('../assets/fonts/Rubik-Bold.ttf');
font-weight: bold;
}

View file

@ -1 +1,2 @@
@import './colors';
@import './fonts';