Skip to content

Commit a844fc5

Browse files
committed
Fix: Pricing AddOns CSS
Signed-off-by: Varad Gupta <114755221+vr-varad@users.noreply.github.com>
1 parent aa74ff5 commit a844fc5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/components/Pricing/PricingAddons

src/components/Pricing/PricingAddons/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,10 @@ export const PricingAddons = ({ isYearly = false, setIsYearly }) => {
248248
<Box sx={{ display: "flex", alignItems: "center", gap: 2, py: 1 }}>
249249
{addon.icon}
250250
<Box>
251-
<Typography variant="body1" fontWeight="500" sx={{ fontFamily: "\"Qanelas Soft\", \"Open Sans\", sans-serif" }}>
251+
<Typography variant="body1" fontWeight="500" sx={{ wordBreak: "break-word", whiteSpace: "normal", fontFamily: "\"Qanelas Soft\", \"Open Sans\", sans-serif" }}>
252252
{addon.name}
253253
</Typography>
254-
<Typography variant="body2" color="text.secondary" sx={{ textOverflow: "ellipsis", whiteSpace: "nowrap", overflow: "hidden", fontStyle: "italic", fontFamily: "\"Qanelas Soft\", \"Open Sans\", sans-serif" }}>
254+
<Typography variant="body2" color="text.secondary" sx={{ wordBreak: "break-word", whiteSpace: "normal", fontStyle: "italic", fontFamily: "\"Qanelas Soft\", \"Open Sans\", sans-serif" }}>
255255
{addon.id === "academy"
256256
? addon.description
257257
: (() => {

0 commit comments

Comments
 (0)