- Fixed theme css path
- Fixed slider thumbs initializing in the wrong position
This commit is contained in:
Geomitron
2021-04-06 18:40:00 -05:00
parent 0b427d0cee
commit 1c860bd0d9
5 changed files with 24 additions and 14 deletions

View File

@@ -39,7 +39,7 @@ export class SettingsService {
const link = document.createElement('link')
link.type = 'text/css'
link.rel = 'stylesheet'
link.href = `./assets/themes/${theme}.css`
link.href = `./assets/themes/${theme.toLowerCase()}.css`
this.currentThemeLink = document.head.appendChild(link)
}