Skip to content

Commit d516339

Browse files
committed
Slider Pricing update
Signed-off-by: Namanv509 <namanverma00260@gmail.com>
1 parent 4a345a2 commit d516339

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/components/Pricing/PricingAddons/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr
398398
}
399399
}}
400400
>
401-
{formatSliderPrice(option.yearlyPerUser/12, currency)}<br/>{targetSubAddon.unitLabelSingular}/month
401+
{formatSliderPrice(option.yearlyPerUser / 12, currency)}<br/>{targetSubAddon.unitLabelSingular}/month
402402
</Box>
403403
)}
404404
<Box
@@ -407,10 +407,10 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr
407407
mb: 1.5,
408408
fontSize: {
409409
xs: "0.75rem",
410-
sm: "0.8rem",
410+
sm: "0.9rem",
411411
}
412412
}}>
413-
{formatSliderPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser, currency)}/{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
413+
{formatSliderPrice(isYearly ? option.yearlyPerUser : option.monthlyPerUser, currency)}<br/>{targetSubAddon.unitLabelSingular}/{isYearly ? "year" : "month"}
414414
</Box>
415415
</Box>
416416
),

src/components/Pricing/PricingAddons/styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ export const boxStyles = {
251251
mt: 1
252252
},
253253
disclaimerSection: {
254-
my: 6,
254+
my: 10,
255255
mb: 2,
256256
justifyContent: "space-between"
257257
}

src/sections/Pricing/index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@ import { min } from "lodash";
1717

1818
const customToggleButtonStyles = {
1919
container: {
20-
...toggleButtonStyles.container,
20+
...toggleButtonStyles.container,
2121
backgroundColor: "transparent",
22-
p: "6px",
23-
minHeight: "42px",
24-
minWidth: "50px",
25-
borderColor:"#ffffffff"
22+
p: "6px",
23+
minHeight: "42px",
24+
minWidth: "50px",
25+
borderColor: "#ffffffff"
2626
},
2727
base: {
2828
py: 0.5,
2929
px: 4,
3030
fontSize: "4rem",
31-
...toggleButtonStyles.base,
31+
...toggleButtonStyles.base,
3232
},
3333
};
3434

3535
const getCustomToggleButtonStyle = (isActive, baseStyle) => ({
3636
...getToggleButtonStyle(isActive, baseStyle),
37-
backgroundColor: isActive ? "#00B39F" : "transparent",
37+
backgroundColor: isActive ? "#00B39F" : "transparent",
3838
color: isActive ? "#fffcfcff" : "#fff",
3939
fontSize: "1rem",
4040
"&:hover": {
41-
backgroundColor: isActive ? "#009B8A" : "transparent",
41+
backgroundColor: isActive ? "#009B8A" : "transparent",
4242
},
4343
});
4444

0 commit comments

Comments
 (0)