diff --git a/src/components/Pricing/PricingAddons/index.js b/src/components/Pricing/PricingAddons/index.js
index effcbd8d5161c..08bc283da0185 100644
--- a/src/components/Pricing/PricingAddons/index.js
+++ b/src/components/Pricing/PricingAddons/index.js
@@ -398,7 +398,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr
}
}}
>
- {formatSliderPrice(option.yearlyPerUser/12, currency)}
{targetSubAddon.unitLabelSingular}/month
+ {formatSliderPrice(option.yearlyPerUser / 12, currency)}
{targetSubAddon.unitLabelSingular}/month
)}
- {formatSliderPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser, currency)}/{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
+ {formatSliderPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser, currency)}
{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
),
diff --git a/src/components/Pricing/PricingAddons/styles.js b/src/components/Pricing/PricingAddons/styles.js
index 797a011f961b4..6dca852ae9d86 100644
--- a/src/components/Pricing/PricingAddons/styles.js
+++ b/src/components/Pricing/PricingAddons/styles.js
@@ -251,7 +251,7 @@ export const boxStyles = {
mt: 1
},
disclaimerSection: {
- my: 6,
+ my: 10,
mb: 2,
justifyContent: "space-between"
}
diff --git a/src/sections/Pricing/index.js b/src/sections/Pricing/index.js
index e2a133d688e44..b08f2c4cf5911 100644
--- a/src/sections/Pricing/index.js
+++ b/src/sections/Pricing/index.js
@@ -17,28 +17,28 @@ import { min } from "lodash";
const customToggleButtonStyles = {
container: {
- ...toggleButtonStyles.container,
+ ...toggleButtonStyles.container,
backgroundColor: "transparent",
- p: "6px",
- minHeight: "42px",
- minWidth: "50px",
- borderColor:"#ffffffff"
+ p: "6px",
+ minHeight: "42px",
+ minWidth: "50px",
+ borderColor: "#ffffffff"
},
base: {
py: 0.5,
px: 4,
fontSize: "4rem",
- ...toggleButtonStyles.base,
+ ...toggleButtonStyles.base,
},
};
const getCustomToggleButtonStyle = (isActive, baseStyle) => ({
...getToggleButtonStyle(isActive, baseStyle),
- backgroundColor: isActive ? "#00B39F" : "transparent",
+ backgroundColor: isActive ? "#00B39F" : "transparent",
color: isActive ? "#fffcfcff" : "#fff",
fontSize: "1rem",
"&:hover": {
- backgroundColor: isActive ? "#009B8A" : "transparent",
+ backgroundColor: isActive ? "#009B8A" : "transparent",
},
});