bugfix: auto-bookmark setting was not saved
bugfix: auto-bookmark setting was not saved
This commit is contained in:
parent
3341c5df68
commit
b07aaf38b9
15
src/App.vue
15
src/App.vue
@ -250,6 +250,10 @@
|
||||
}
|
||||
},
|
||||
|
||||
"$store.getters.autoBookmark" (val) {
|
||||
localStorage.autoBookmark = val;
|
||||
},
|
||||
|
||||
"$store.getters.darkTheme" (val) {
|
||||
this.setTheme(val == true ? "dark" : "light");
|
||||
localStorage.darkTheme = val;
|
||||
@ -682,20 +686,13 @@
|
||||
.to-top-button
|
||||
margin-bottom: 80px
|
||||
|
||||
footer
|
||||
background: transparent !important
|
||||
|
||||
.v-application.v-theme--
|
||||
&light
|
||||
header, footer > .v-card.player-interface
|
||||
header, footer
|
||||
background: rgba(255, 255, 255, .5)
|
||||
footer > .v-card.player-interface.solid-bg
|
||||
background: #fff
|
||||
&dark
|
||||
header, footer > .v-card.player-interface
|
||||
header, footer
|
||||
background: rgba(15, 15,15, .5)
|
||||
footer > .v-card.player-interface.solid-bg
|
||||
background: #000
|
||||
|
||||
.content-container
|
||||
height: calc(100vh - 160px)
|
||||
|
||||
@ -2,7 +2,7 @@ const messages = {
|
||||
appName: "AudioLib",
|
||||
about: "About",
|
||||
authors: "Authors",
|
||||
autoBookmarks: "Auto bookmarks",
|
||||
autoBookmarks: "Auto-bookmarks",
|
||||
book: "Books",
|
||||
bookmarkSaved: "Bookmark saved",
|
||||
books: "Book",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user