diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js
index e6e7c6a..c3a5a98 100644
--- a/src/Components/SignupPage/SignupPage.js
+++ b/src/Components/SignupPage/SignupPage.js
@@ -396,6 +396,7 @@ const SignupPage = () => {
value={"data.clientPosition.value"}
disabled={isBusy}
dynamicClassName={"signup-option-div"}
+ optionContainerDynamicClass={"signup-option"}
onClick={(e) => handleChangeRadioInput(e, "clientPosition")}
/>
diff --git a/src/pageElements/Radiogroup.js b/src/pageElements/Radiogroup.js
index 047a194..d14d5c7 100644
--- a/src/pageElements/Radiogroup.js
+++ b/src/pageElements/Radiogroup.js
@@ -27,6 +27,8 @@ const Radiogroup = (props) => {
? optionContainerDynamicClass
: "";
+ console.log("optionContainerDynamic", optionContainerDynamic);
+
return (
{title &&
{title}
}
@@ -35,13 +37,13 @@ const Radiogroup = (props) => {
options?.length &&
options.map((option, index) => (
!disabled && onClick && onClick(option)}
>
{value === option.value ? (
-
+
) : (
-
+
{
);
};
-/**
- * A radio button is a quick way to extract a single coded answer from our users by presenting multiple possibilities and allowing only one option to be chosen.
- */
-
export default Radiogroup;
-
-/*
-
- */
diff --git a/src/styles/signup.scss b/src/styles/signup.scss
index 315ec9c..0085e41 100644
--- a/src/styles/signup.scss
+++ b/src/styles/signup.scss
@@ -105,9 +105,11 @@
.select-plan-summary-box {
display: flex;
flex-direction: column;
- height: 200px;
+ height: 250px;
width: 100%;
- background-color: red;
+ border-radius: 10px;
+ background-color: #fff;
+ border: 1px solid #e9e9e9;
padding: 6px;
}
@@ -117,3 +119,7 @@
margin: 6px;
padding: 6px;
}
+
+.signup-option {
+ width: 200px !important;
+}