mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
54 lines
928 B
Vue
54 lines
928 B
Vue
<template>
|
|
<div id="f-view-parent" class="rounded">
|
|
<div class="fixed">
|
|
<SearchBox />
|
|
</div>
|
|
<div id="scrollable">
|
|
<SongList />
|
|
<FolderList />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import SongList from "@/components/FolderView/SongList.vue";
|
|
import FolderList from "@/components/FolderView/FolderList.vue";
|
|
import SearchBox from "@/components/FolderView/SearchBox.vue";
|
|
|
|
export default {
|
|
components: {
|
|
SongList,
|
|
FolderList,
|
|
SearchBox,
|
|
},
|
|
setup() {
|
|
return {
|
|
//
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
#f-view-parent {
|
|
position: relative;
|
|
height: 100%;
|
|
background-color: #131313b2;
|
|
padding-left: $small;
|
|
padding-right: $small;
|
|
padding-top: 5rem;
|
|
}
|
|
|
|
#f-view-parent .fixed {
|
|
position: absolute;
|
|
height: min-content;
|
|
width: calc(100% - 2rem);
|
|
top: .5rem;
|
|
}
|
|
|
|
#scrollable {
|
|
overflow-y: scroll;
|
|
height: 100%;
|
|
padding-right: 1rem;
|
|
}
|
|
</style> |