client: remove search box in folder view

- add working ctrl f listener
This commit is contained in:
geoffrey45
2022-01-06 20:40:23 +03:00
parent 64d2c8c466
commit 9310382436
9 changed files with 116 additions and 104 deletions
+4 -7
View File
@@ -79,7 +79,7 @@ export default {
#f-view-parent {
position: relative;
background-color: $card-dark;
padding: 5rem $small 0 $small;
padding: 4rem $small 0 $small;
overflow: hidden;
margin: $small 0 $small 0;
}
@@ -87,17 +87,14 @@ export default {
#f-view-parent .fixed {
position: absolute;
height: min-content;
width: calc(100% - 2rem);
width: calc(100% - 1rem);
top: 0.5rem;
}
#scrollable {
overflow-y: scroll;
height: calc(100% - 1rem);
height: calc(100% - $small);
padding-right: $small;
.separator {
margin: 0 1rem 0 1rem;
}
}
</style>