[web] Remove the need to set the layer index for the bottom menu

This commit is contained in:
Alain Nussbaumer 2023-12-14 20:36:47 +01:00
parent 1daf625618
commit 1b666fe936

View File

@ -1,7 +1,6 @@
<template> <template>
<nav <nav
class="navbar is-block is-white is-fixed-bottom fd-bottom-navbar" class="navbar is-block is-white is-fixed-bottom fd-bottom-navbar"
:style="zindex"
:class="{ :class="{
'is-transparent': is_now_playing_page, 'is-transparent': is_now_playing_page,
'is-dark': !is_now_playing_page 'is-dark': !is_now_playing_page
@ -319,17 +318,6 @@ export default {
} }
}, },
show_burger_menu() {
return this.$store.state.show_burger_menu
},
zindex() {
if (this.show_burger_menu) {
return 'z-index: 20'
}
return ''
},
now_playing() { now_playing() {
return this.$store.getters.now_playing return this.$store.getters.now_playing
}, },