Skip to content

Commit c2db2ef

Browse files
Fix: Add border radius to banner
Added `rounded-lg` class to the `PaymentNotificationBanner` component to apply border radius to the alert.
1 parent 5a6b8a9 commit c2db2ef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/PaymentNotificationBanner.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const PaymentNotificationItem = ({ notification, onDismiss }: PaymentNotificatio
2525
};
2626

2727
return (
28-
<Alert className="bg-blue-50 border-blue-200 mb-4">
28+
<Alert className="bg-blue-50 border-blue-200 mb-4 rounded-xl">
2929
<CreditCard className="h-4 w-4 text-blue-600" />
3030
<AlertDescription className="flex items-center justify-between w-full">
3131
<div className="flex items-center gap-2">
@@ -44,7 +44,7 @@ const PaymentNotificationItem = ({ notification, onDismiss }: PaymentNotificatio
4444
variant="outline"
4545
size="sm"
4646
onClick={() => onDismiss(notification.id, false)}
47-
className="text-blue-700 border-blue-300 hover:bg-blue-100"
47+
className="text-blue-700 border-blue-300 hover:bg-blue-100 rounded-lg"
4848
>
4949
<Clock className="h-3 w-3 mr-1" />
5050
Me le rappeler plus tard
@@ -54,7 +54,7 @@ const PaymentNotificationItem = ({ notification, onDismiss }: PaymentNotificatio
5454
variant="outline"
5555
size="sm"
5656
onClick={() => onDismiss(notification.id, true)}
57-
className="text-blue-700 border-blue-300 hover:bg-blue-100"
57+
className="text-blue-700 border-blue-300 hover:bg-blue-100 rounded-lg"
5858
>
5959
<X className="h-3 w-3 mr-1" />
6060
Ne plus me rappeler

0 commit comments

Comments
 (0)