mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-04 20:00:40 -04:00
[web] Remove unnecessary CSS style
This commit is contained in:
parent
2492f51022
commit
9ffe5d7df8
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<navbar-top />
|
<navbar-top />
|
||||||
<vue-progress-bar class="fd-progress-bar has-background-info" />
|
<vue-progress-bar class="has-background-info" />
|
||||||
<router-view v-slot="{ Component }">
|
<router-view v-slot="{ Component }">
|
||||||
<component :is="Component" />
|
<component :is="Component" />
|
||||||
</router-view>
|
</router-view>
|
||||||
|
@ -14,15 +14,10 @@ import store from './store'
|
|||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
.use(store)
|
.use(store)
|
||||||
.use(router)
|
.use(router)
|
||||||
.use(VueProgressBar)
|
.use(VueProgressBar, { position: 'relative' })
|
||||||
.use(VueClickAway)
|
.use(VueClickAway)
|
||||||
.use(VueLazyLoad, {
|
.use(VueLazyLoad, { log: false })
|
||||||
// Do not log errors, if image does not exist
|
.use(mdiVue, { icons })
|
||||||
log: false
|
|
||||||
})
|
|
||||||
.use(mdiVue, {
|
|
||||||
icons
|
|
||||||
})
|
|
||||||
.use(i18n)
|
.use(i18n)
|
||||||
|
|
||||||
app.config.globalProperties.$filters = filters
|
app.config.globalProperties.$filters = filters
|
||||||
|
@ -201,10 +201,6 @@ a.navbar-item {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fd-progress-bar {
|
|
||||||
top: $navbar-height !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fd-has-shadow img {
|
.fd-has-shadow img {
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 4px 8px 0 rgba(0, 0, 0, 0.2),
|
0 4px 8px 0 rgba(0, 0, 0, 0.2),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user