mirror of
https://github.com/romancm/gamebrary
synced 2024-11-10 13:44:16 +00:00
fix dock bg on dark mode
This commit is contained in:
parent
981e80da83
commit
ee2c2b872a
1 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,10 @@
|
|||
<template lang="html">
|
||||
<nav
|
||||
class="bg-white rounded position-fixed d-flex flex-column p-0 m-2 text-center border"
|
||||
:class="{ 'bg-dark text-white border-dark': nightMode }"
|
||||
class=" rounded position-fixed d-flex flex-column p-0 m-2 text-center border"
|
||||
:class="{
|
||||
'bg-dark text-white border-dark': nightMode,
|
||||
'bg-white': !nightMode,
|
||||
}"
|
||||
>
|
||||
<b-button
|
||||
title="Dashboard"
|
||||
|
|
Loading…
Reference in a new issue