Fix confirmation modal size (#1295)

This commit is contained in:
Weiko
2023-08-23 15:38:37 +02:00
committed by GitHub
parent 4629b3dd8e
commit 76246ec880
2 changed files with 6 additions and 11 deletions

View File

@ -26,6 +26,7 @@ export type ConfirmationModalProps = {
const StyledConfirmationModal = styled(Modal)`
padding: ${({ theme }) => theme.spacing(4)};
width: calc(400px - ${({ theme }) => theme.spacing(10 * 2)});
`;
const StyledCenteredButton = styled(Button)`