sidebar: fix overflow

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/767/head
Varun Patil 2023-08-02 16:08:04 -07:00
parent eb9c385d74
commit aad685d8d3
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<template>
<aside id="app-sidebar-vue" class="app-sidebar" v-if="reducedOpen">
<aside id="app-sidebar-vue" class="app-sidebar reduced hide-scrollbar" v-if="reducedOpen">
<div class="title">
<h2>{{ basename }}</h2>
@ -198,6 +198,10 @@ export default defineComponent({
max-width: 360px !important;
position: fixed !important;
&.reduced {
overflow-y: auto;
}
@media (max-width: 512px) {
max-width: unset !important;
}