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:
committed by
Matthias Hannig
parent
3a5345d375
commit
d8d3c42643
22
client/.gitignore
vendored
22
client/.gitignore
vendored
@ -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
|
||||
|
||||
|
23
client/assets/fonts/source-sans-pro.css
Normal file
23
client/assets/fonts/source-sans-pro.css
Normal 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');
|
||||
}
|
Reference in New Issue
Block a user