fix: no scrollbar when open the right sidebar

pull/2422/head
Tienson Qin 2021-07-11 16:38:53 +08:00
parent 55b68cbc51
commit 43b704b5d4
2 changed files with 5 additions and 1 deletions

View File

@ -1143,3 +1143,7 @@ html[data-theme='dark'] .keyboard-shortcut > code {
.ui__modal-panel { .ui__modal-panel {
border-radius: 8px; border-radius: 8px;
} }
.overflow-y-scroll {
overflow-y: scroll;
}

View File

@ -341,7 +341,7 @@
:route-match route-match}) :route-match route-match})
[:div.#app-container.h-screen.flex [:div.#app-container.h-screen.flex
[:div.flex-1.h-full.flex.flex-col#left-container.relative [:div.flex-1.h-full.flex.flex-col#left-container.relative
{:class (if (state/sub :ui/sidebar-open?) "overflow-hidden" "w-full")} {:class (if (state/sub :ui/sidebar-open?) "overflow-y-scroll" "w-full")}
[:div.scrollbar-spacing#main-container [:div.scrollbar-spacing#main-container
(header/header {:open-fn open-fn (header/header {:open-fn open-fn
:white? white? :white? white?