From 92b26fdecdf2598e047ce692448b0294520e4c21 Mon Sep 17 00:00:00 2001 From: CuriousMagpie Date: Wed, 27 Jul 2022 18:05:53 -0400 Subject: [PATCH] fix(style): set border radii to 8px on upgrading-group id --- website/client/src/components/groups/groupPlan.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/client/src/components/groups/groupPlan.vue b/website/client/src/components/groups/groupPlan.vue index 47978106ea..ec5aee5442 100644 --- a/website/client/src/components/groups/groupPlan.vue +++ b/website/client/src/components/groups/groupPlan.vue @@ -266,8 +266,8 @@ color: #bda8ff; border-top-right-radius: 0px; border-bottom-right-radius: 0px; - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; box-shadow: 0 2px 2px 0 rgba(26, 24, 29, 0.16), 0 1px 4px 0 rgba(26, 24, 29, 0.12); } @@ -282,6 +282,8 @@ .payment-providers { width: 350px; + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; } }