Skip to content

Commit

Permalink
fix: Adapt color of buttons inside showAlert
Browse files Browse the repository at this point in the history
  • Loading branch information
cballevre committed Jul 25, 2024
1 parent d7bb035 commit c84131d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/move/components/MoveModalSuccessAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ const MoveModalSuccessAction: React.FC<MoveModalSuccessActionProps> = ({
<>
{canCancel ? (
<Button
color="success"
label={t('Move.cancel')}
onClick={handleCancel}
size="small"
variant="text"
disabled={isCancelling}
style={{ color: `var(--successContrastTextColor)` }}
/>
) : null}
<Button
Expand All @@ -74,6 +74,7 @@ const MoveModalSuccessAction: React.FC<MoveModalSuccessActionProps> = ({
onClick={handleNavigateFolder}
size="small"
variant="text"
style={{ color: `var(--successContrastTextColor)` }}
/>
</>
)
Expand Down

0 comments on commit c84131d

Please sign in to comment.