Skip to content

Commit dbaa018

Browse files
Fix: Apply border radius to buttons
Apply border radius to the buttons in the payment notification banner to match the application's style.
1 parent c2db2ef commit dbaa018

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/PaymentNotificationBanner.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 rounded-lg"
47+
className="text-blue-700 border-blue-300 hover:bg-blue-100"
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 rounded-lg"
57+
className="text-blue-700 border-blue-300 hover:bg-blue-100"
5858
>
5959
<X className="h-3 w-3 mr-1" />
6060
Ne plus me rappeler

0 commit comments

Comments
 (0)