Fix <Modal> footers with long-text or lots of buttons

This commit is contained in:
Evan Hahn 2021-05-27 11:43:39 -04:00 committed by GitHub
parent 6664315e3a
commit 7038a3f3ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 48 additions and 20 deletions

View file

@ -22,8 +22,8 @@ export const Alert: FunctionComponent<PropsType> = ({
}) => (
<Modal i18n={i18n} onClose={onClose} title={title}>
{body}
<Modal.Footer>
<Modal.ButtonFooter>
<Button onClick={onClose}>{i18n('Confirmation--confirm')}</Button>
</Modal.Footer>
</Modal.ButtonFooter>
</Modal>
);