We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a844fc5 commit b99b262Copy full SHA for b99b262
1 file changed
src/components/Pricing/PricingAddons/index.js
@@ -388,6 +388,10 @@ export const PricingAddons = ({ isYearly = false, setIsYearly }) => {
388
fontFamily: "\"Qanelas Soft\", \"Open Sans\", sans-serif",
389
borderRadius: "8px",
390
padding: "8px 12px",
391
+ whiteSpace: { xs: "normal", sm: "nowrap" }, // default for sm+ is nowrap
392
+ maxWidth: { xs: "150px", sm: "none" }, // remove maxWidth for sm+
393
+ textAlign: { xs: "center", sm: "left" }, // default alignment for sm+
394
+ overflowWrap: { xs: "break-word", sm: "normal" },
395
"&:before": {
396
borderTopColor: "#363F49",
397
},
0 commit comments