mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-26 23:25:56 -05:00
[web] Fix incorrect colour of loading progress bar
All informative UI elements have now the information colour defined in Bulma.
This commit is contained in:
parent
ea3975753d
commit
56842bb469
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<navbar-top />
|
||||
<vue-progress-bar class="fd-progress-bar" />
|
||||
<vue-progress-bar class="fd-progress-bar has-background-info" />
|
||||
<router-view v-slot="{ Component }">
|
||||
<component :is="Component" />
|
||||
</router-view>
|
||||
|
@ -16,11 +16,7 @@ import './mystyles.scss'
|
||||
const app = createApp(App)
|
||||
.use(store)
|
||||
.use(router)
|
||||
.use(VueProgressBar, {
|
||||
color: 'hsl(204, 86%, 53%)',
|
||||
failedColor: 'red',
|
||||
height: '1px'
|
||||
})
|
||||
.use(VueProgressBar)
|
||||
.use(VueClickAway)
|
||||
.use(VueLazyLoad, {
|
||||
// Do not log errors, if image does not exist
|
||||
|
Loading…
Reference in New Issue
Block a user