fix folder list component

This commit is contained in:
geoffrey45
2021-11-20 14:56:07 +03:00
parent cf8ba6554b
commit 7584a8a8ea
23 changed files with 142 additions and 30 deletions
+10 -6
View File
@@ -1,6 +1,8 @@
<template>
<div id="f-view-parent" class="rounded">
<SearchBox />
<div class="fixed">
<SearchBox />
</div>
<div id="scrollable">
<SongList />
<FolderList />
@@ -29,17 +31,19 @@ export default {
<style>
#f-view-parent {
height: 100%;
height: 99%;
background-color: rgba(0, 0, 0, 0.24);
padding-left: 20px;
padding-right: 20px;
padding-top: 1em;
overflow: hidden;
/* border: solid; */
}
#f-view-parent .fixed {
height: min-content;
}
#scrollable {
overflow: scroll;
overflow-y: auto;
height: 90%;
margin-bottom: 2em;
}
</style>