scroll inside map previews

This commit is contained in:
Vinzenz Schroeter 2024-05-06 01:10:12 +02:00
parent 170a7faf0f
commit dced0a3a5c
4 changed files with 6 additions and 4 deletions

View file

@ -13,6 +13,4 @@
max-height: 75vh;
max-width: 75vw;
overflow: scroll;
}

View file

@ -6,7 +6,7 @@ export default function Dialog({children, className}: {
children: ReactNode;
className?: string;
}) {
return <Column className={'Dialog ' + (className ?? '')}>
return <Column className={'Dialog overflow-scroll ' + (className ?? '')}>
{children}
</Column>
}