mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
add search page
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user