add search page

This commit is contained in:
geoffrey45
2022-08-28 00:49:46 +03:00
parent b019fa22c4
commit ced30d309e
14 changed files with 119 additions and 74 deletions
+7 -6
View File
@@ -37,11 +37,13 @@ onUpdated(() => {
<style lang="scss">
#folder-nav-title {
overflow: hidden;
width: 100%;
.folder {
display: flex;
gap: $small;
width: inherit;
.playbtnrect {
height: 2.25rem;
@@ -62,6 +64,7 @@ onUpdated(() => {
height: 2.25rem;
display: flex;
align-items: center;
width: 100%;
overflow: auto;
padding-right: $smaller;
@@ -87,8 +90,7 @@ onUpdated(() => {
.path {
white-space: nowrap;
display: flex;
align-items: center;
margin: auto 0;
cursor: default;
.text {
@@ -97,11 +99,10 @@ onUpdated(() => {
}
&::before {
content: "";
height: $medium;
content: "/";
font-size: small;
margin-right: $smaller;
border-right: solid 1px $white;
transform: rotate(20deg);
opacity: .25;
}
&:first-child {
+26
View File
@@ -0,0 +1,26 @@
<template>
<div class="nav-search-input">
<SearchInput />
</div>
</template>
<script setup lang="ts">
import SearchInput from "@/components/RightSideBar/SearchInput.vue";
</script>
<style lang="scss">
.nav-search-input {
#gsearch-input {
display: unset;
#ginner {
max-width: 30rem;
margin: 0 auto;
}
.buttons {
display: none;
}
}
}
</style>