mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-05-19 15:59:28 -05:00
Fix vertical scrolling in split view on small screens. #90
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user