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
+10 -11
View File
@@ -25,15 +25,15 @@
</div>
</div>
</div>
<div>
<Input :page="Routes.folder" />
</div>
<SearchInput :page="Routes.folder" />
<!-- <div>
</div> -->
</div>
</div>
</template>
<script setup lang="ts">
import Input from "@/components/shared/Input.vue";
import SearchInput from "@/components/shared/Input.vue";
import { Routes } from "@/composables/enums";
import { subPath } from "@/interfaces";
import { focusElem } from "@/utils";
@@ -55,7 +55,6 @@ onUpdated(() => {
.folder {
display: grid;
grid-template-columns: 1fr max-content;
gap: $small;
.fname-wrapper {
width: 100%;
@@ -122,13 +121,13 @@ onUpdated(() => {
}
}
.inthisfolder > .text {
color: #fff;
font-weight: bold;
background-color: $gray;
// .inthisfolder > .text {
// color: #fff;
// font-weight: bold;
// background-color: $gray;
transition: all 0.5s;
}
// transition: all 0.5s;
// }
}
}
}