Start relative paths in CSS with ./

This commit is contained in:
Michael Mior
2020-08-18 12:49:49 -04:00
parent 15815efe05
commit a150d0c5dd
14 changed files with 38 additions and 38 deletions

View File

@ -1,10 +1,10 @@
@font-face {
font-family: 'League Gothic';
src: url('league-gothic.eot');
src: url('league-gothic.eot?#iefix') format('embedded-opentype'),
url('league-gothic.woff') format('woff'),
url('league-gothic.ttf') format('truetype');
src: url('./league-gothic.eot');
src: url('./league-gothic.eot?#iefix') format('embedded-opentype'),
url('./league-gothic.woff') format('woff'),
url('./league-gothic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
}