mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
977d9282cb
+ remove tooltip markup + refactor css classnames
67 lines
1.3 KiB
Vue
67 lines
1.3 KiB
Vue
<template>
|
|
<div class="r-sidebar">
|
|
<SearchInput />
|
|
<div v-auto-animate class="r-content no-scroll" >
|
|
<div class="r-dash" v-if="tabs.current === tabs.tabs.home">
|
|
<DashBoard />
|
|
</div>
|
|
<div class="r-search" v-if="tabs.current === tabs.tabs.search">
|
|
<Search />
|
|
</div>
|
|
<div class="r-queue" v-if="tabs.current === tabs.tabs.queue">
|
|
<Queue />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import useTabStore from "../../stores/tabs";
|
|
import DashBoard from "./Home/Main.vue";
|
|
import Queue from "./Queue.vue";
|
|
import Search from "./Search/Main.vue";
|
|
import SearchInput from "./SearchInput.vue";
|
|
|
|
const tabs = useTabStore();
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.r-sidebar {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-rows: max-content 1fr;
|
|
background-color: rgb(22, 22, 22);
|
|
padding-bottom: 1rem;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
margin-bottom: -1rem;
|
|
|
|
.gsearch-input {
|
|
height: 2.5rem;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.r-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: $gray;
|
|
|
|
.r-search {
|
|
height: 100%;
|
|
}
|
|
|
|
.r-dash {
|
|
height: 100%;
|
|
}
|
|
|
|
.r-queue {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
display: grid;
|
|
gap: $small;
|
|
grid-template-rows: max-content 1fr;
|
|
}
|
|
}
|
|
}
|
|
</style>
|