PlainAdmin / plain-free-bootstrap-admin-template

Free Vanilla JavaScript Bootstrap 5 Admin and Dashboard Template that comes with all essential dashboard components, elements, charts, graph and application pages.
https://plainadmin.com/
MIT License
352 stars 60 forks source link

lineicons.css incorrect file references #9

Closed mkd7x closed 1 year ago

mkd7x commented 1 year ago

Currently the font files are being referenced in lowercase:

@font-face {
  font-family: 'lineicons';
  src: url('../fonts/lineicons.eot');
  src: url('../fonts/lineicons.eot') format('embedded-opentype'),
       url('../fonts/lineicons.woff2') format('woff2'),
       url('../fonts/lineicons.woff') format('woff'),
       url('../fonts/lineicons.ttf') format('truetype'),
       url('../fonts/lineicons.svg') format('svg');
}

When it should be:

@font-face {
  font-family: 'lineicons';
  src: url('../fonts/LineIcons.eot');
  src: url('../fonts/LineIcons.eot') format('embedded-opentype'),
       url('../fonts/LineIcons.woff2') format('woff2'),
       url('../fonts/LineIcons.woff') format('woff'),
       url('../fonts/LineIcons.ttf') format('truetype'),
       url('../fonts/LineIcons.svg') format('svg');
}

This causes a 404 error when trying to fetch the font files from a web server.