Fix vertical scrolling in split view on small screens. #90

This commit is contained in:
Sebastian Jeltsch
2025-07-13 20:23:53 +02:00
parent 4d1ec95052
commit cb33d7e366
@@ -44,8 +44,11 @@ export function SplitView(props: {
}) {
function VerticalSplit() {
return (
<div class="flex flex-col overflow-hidden">
<props.first horizontal={false} />
<div class="hide-scrollbars flex h-full flex-col overflow-x-hidden overflow-y-scroll">
<div>
<props.first horizontal={false} />
</div>
<props.second horizontal={false} />
</div>
);