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
+25
View File
@@ -0,0 +1,25 @@
<template>
<div class="search-view">
<div class="scrollable">
<Main />
</div>
</div>
</template>
<script setup lang="ts">
import SearchInput from "@/components/RightSideBar/SearchInput.vue";
import Main from "@/components/RightSideBar/Search/Main.vue";
</script>
<style lang="scss">
.search-view {
height: 100%;
background-color: $black;
padding-top: 0;
.scrollable {
height: 100%;
overflow: auto;
}
}
</style>