From a7668ea379dc0e70a484e053315841282bf6af69 Mon Sep 17 00:00:00 2001 From: Farah Date: Thu, 27 Oct 2022 11:21:52 +0100 Subject: [PATCH] Fixed border edges issue --- app/static/css/application.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/static/css/application.css b/app/static/css/application.css index 510c66e..33ff97a 100644 --- a/app/static/css/application.css +++ b/app/static/css/application.css @@ -1014,12 +1014,12 @@ a:hover { margin: var(--payments-spacing) !important; } -.adyen-checkout__payment-methods-list li:nth-child(2) { +.adyen-checkout__payment-method--selected+.adyen-checkout__payment-method, .adyen-checkout__payment-method:first-child { border-top-left-radius: var(--topedges-left) !important; border-top-right-radius: var(--topedges-right) !important; } -.adyen-checkout__payment-methods-list li:last-child { +.adyen-checkout__payment-method--next-selected, .adyen-checkout__payment-method:last-child { border-bottom-left-radius: var(--bottomedges-left) !important; border-bottom-right-radius: var(--bottomedges-right) !important; }