diff --git a/portal-ui/src/screens/Console/Common/FormComponents/RadioGroupSelector/RadioGroupSelector.tsx b/portal-ui/src/screens/Console/Common/FormComponents/RadioGroupSelector/RadioGroupSelector.tsx index c13eb85d0..3973b66d9 100644 --- a/portal-ui/src/screens/Console/Common/FormComponents/RadioGroupSelector/RadioGroupSelector.tsx +++ b/portal-ui/src/screens/Console/Common/FormComponents/RadioGroupSelector/RadioGroupSelector.tsx @@ -50,12 +50,6 @@ const styles = (theme: Theme) => ...fieldBasic, ...tooltipHelper, radioBoxContainer: {}, - fieldContainer: { - ...fieldBasic.fieldContainer, - display: "flex", - paddingBottom: 10, - marginTop: 11, - }, optionLabel: { "&.Mui-disabled": { "& .MuiFormControlLabel-label": { @@ -116,8 +110,8 @@ export const RadioGroupSelector = ({ displayInColumn = false, }: RadioGroupProps) => { return ( - - + + {label} {tooltip !== "" && ( @@ -130,35 +124,35 @@ export const RadioGroupSelector = ({ )} - -
- - {selectorOptions.map((selectorOption) => { - return ( - } - label={selectorOption.label} - disabled={disableOptions} - className={clsx(classes.optionLabel, { - [classes.checkedOption]: - selectorOption.value === currentSelection, - })} - /> - ); - })} - -
-
+ + + {selectorOptions.map((selectorOption) => { + return ( + } + label={selectorOption.label} + disabled={disableOptions} + className={clsx(classes.optionLabel, { + [classes.checkedOption]: + selectorOption.value === currentSelection, + })} + /> + ); + })} + + + ); };