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

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>