This commit is contained in:
Kenneth Jannette
2024-01-26 19:41:00 -06:00
parent d6b8e97fc2
commit 995fa1882d
2 changed files with 17 additions and 10 deletions

View File

@@ -9,10 +9,10 @@ export const signupRadioFields = [
"24/7 support", "24/7 support",
], ],
details: "", details: "",
price: 59, price: 49,
}, },
{ {
name: "Junior Partner", name: "Partner",
label: "Monthly - pro", label: "Monthly - pro",
value: "monthlyProPlan", value: "monthlyProPlan",
description: [ description: [
@@ -22,7 +22,7 @@ export const signupRadioFields = [
"24/7 support", "24/7 support",
], ],
details: "", details: "",
price: 169, price: 79,
}, },
{ {
name: "Senior Partner", name: "Senior Partner",
@@ -30,6 +30,6 @@ export const signupRadioFields = [
value: "annualUnlimited", value: "annualUnlimited",
description: ["Unlimited documents.", "Triage-level support"], description: ["Unlimited documents.", "Triage-level support"],
details: "", details: "",
price: 199, price: 119,
}, },
]; ];

View File

@@ -12,6 +12,8 @@
height: 40px; height: 40px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
margin-top: 12px;
margin-left: 2px;
} }
.radio-circle-lower { .radio-circle-lower {
@@ -22,28 +24,33 @@
} }
.radio-circle-box { .radio-circle-box {
height: 40px; display: flex;
margin: 12px 8px; flex-direction: column;
justify-content: center;
align-items: center;
margin: auto;
height: 30px;
} }
.radio-name-box { .radio-name-box {
height: 40px; height: 30px;
width: 50%; width: 50%;
font-family: var(--main-font); font-family: var(--main-font);
font-family: Roboto; font-family: Roboto;
font-weight: 500; font-weight: 500;
letter-spacing: 0.05rem; letter-spacing: 0.05rem;
margin: 13px 8px;
} }
.radio-price-box { .radio-price-box {
display: flex; display: flex;
flex-direction: row-reverse; flex-direction: row-reverse;
margin: 16px 8px;
height: 30px;
width: 30%; width: 30%;
} }
.radio-price { .radio-price {
width: 20px; height: 25px;
width: 40px;
float: right; float: right;
} }