refactor: add wrap for small screen widths (#71864)

This commit is contained in:
Laura Benz 2023-07-26 11:07:34 +02:00 committed by GitHub
parent 64c369e17b
commit ce5609e8ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,7 +115,7 @@ function ModalButtonRow({ leftItems, children }: { leftItems?: React.ReactNode;
return (
<div className={styles.modalButtonRow}>
<HorizontalGroup justify="flex-end" spacing="md">
<HorizontalGroup justify="flex-end" spacing="md" wrap={true}>
{children}
</HorizontalGroup>
</div>