Redesign page search input area

+ redefine global search input colors
+ redesign settings page
+ move settings text to a strings module
+ add title and description to now playing settings
This commit is contained in:
geoffrey45
2022-09-27 21:28:42 +03:00
committed by Mungai Njoroge
parent 460695fd87
commit 62b9aa7a3e
23 changed files with 181 additions and 143 deletions
+3 -3
View File
@@ -1,17 +1,17 @@
<template>
<div class="l-sidebar noscroll border">
<div class="l-sidebar noscroll">
<div class="withlogo">
<Logo />
<Navigation />
</div>
<nowPlaying v-if="settings.show_default_np" />
<NPImg v-if="settings.use_np_img" />
</div>
</template>
<script setup lang="ts">
import Navigation from "@/components/LeftSidebar/Navigation.vue";
import nowPlaying from "@/components/LeftSidebar/nowPlaying.vue";
import NPImg from "@/components/LeftSidebar/nowPlayingImg.vue";
import Logo from "@/components/Logo.vue";
import useSettingsStore from "@/stores/settings";