1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

only ingore scss build artifacts

This commit is contained in:
Matthias Hannig
2018-08-02 11:29:55 +02:00
committed by Matthias Hannig
parent 3a5345d375
commit d8d3c42643
2 changed files with 44 additions and 1 deletions

22
client/.gitignore vendored
View File

@ -2,4 +2,24 @@
build/
*.log
node_modules/
/node_modules
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
src/assets/scss/*.css

View File

@ -0,0 +1,23 @@
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'),
url(SourceSansPro-Light.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro Regular'),
local('SourceSansPro-Regular'),
url(SourceSansPro-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: local('Source Sans Pro Bold'),
local('SourceSansPro-Bold'),
url(SourceSansPro-Bold.ttf) format('truetype');
}