Skip to content

Commit 529a5f6

Browse files
Add border to modal buttons
Add a border to the modal buttons in `src/components/AffiliateManagementDialog.tsx` to increase their visibility.
1 parent aae8904 commit 529a5f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/AffiliateManagementDialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,12 @@ export const AffiliateManagementDialog = ({ affiliate, open, onOpenChange, mode
156156
type="button"
157157
variant="destructive"
158158
onClick={() => setShowDeleteConfirm(true)}
159-
className="mr-auto"
159+
className="mr-auto border border-red-300"
160160
>
161161
<Trash2 className="h-4 w-4 mr-2" />
162162
Supprimer
163163
</Button>
164-
<Button type="submit" disabled={loading}>
164+
<Button type="submit" disabled={loading} className="border border-slate-300">
165165
{loading ? 'Sauvegarde...' : 'Sauvegarder'}
166166
</Button>
167167
</DialogFooter>

0 commit comments

Comments
 (0)