We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a48280 commit cc48884Copy full SHA for cc48884
src/@next/Modal/Modal.tsx
@@ -119,7 +119,7 @@ export const Modal = React.forwardRef<HTMLDivElement, ModalProps>(
119
}
120
121
const defaultActionContent = (
122
- <ButtonGroup>
+ <ButtonGroup className="modal-actions-button-group">
123
{secondaryAction && (
124
<Button
125
onClick={() => secondaryAction.action?.()}
@@ -218,7 +218,9 @@ export const Modal = React.forwardRef<HTMLDivElement, ModalProps>(
218
{content}
219
</StyledModalContent>
220
{hasActions && (
221
- <StyledModalActions>{actionsContent}</StyledModalActions>
+ <StyledModalActions className="modal-actions">
222
+ {actionsContent}
223
+ </StyledModalActions>
224
)}
225
</StyledModalContainer>
226
{rightComponent && (
0 commit comments