change color in navbar for open creations

This commit is contained in:
ogerly 2021-12-16 17:14:48 +01:00
parent a4a51fbf9d
commit 8545e27a23

View File

@ -7,14 +7,14 @@
<b-navbar-toggle target="nav-collapse"></b-navbar-toggle>
<b-collapse id="nav-collapse" class="h4" is-nav>
<b-collapse id="nav-collapse" is-nav>
<b-navbar-nav>
<b-nav-item to="/">Übersicht</b-nav-item>
<b-nav-item to="/user">Usersuche</b-nav-item>
<b-nav-item to="/creation">Mehrfachschöpfung</b-nav-item>
<b-nav-item
v-show="$store.state.openCreations > 0"
class="bg-danger p-2"
class="bg-color-creation p-1"
to="/creation-confirm"
>
{{ $store.state.openCreations }} offene Schöpfungen
@ -48,4 +48,7 @@ export default {
height: 2rem;
padding-left: 10px;
}
.bg-color-creation {
background-color: #cf1010dc;
}
</style>