[web] Remove unnecessary CSS style

This commit is contained in:
Alain Nussbaumer 2024-03-05 12:16:55 +01:00
parent 2492f51022
commit 9ffe5d7df8
3 changed files with 4 additions and 13 deletions

View File

@ -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>

View File

@ -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

View File

@ -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),