Skip to content

Commit ea4cc9c

Browse files
committed
Fix layout overflow issue in PricingAddons component by adjusting Container and Card styles
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent 8b74675 commit ea4cc9c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • src/components/Pricing/PricingAddons

src/components/Pricing/PricingAddons/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,12 @@ export const PricingAddons = ({ isYearly = false, setIsYearly }) => {
144144
return (
145145
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
146146
<CssBaseline>
147-
<Container maxWidth="md" sx={{ my: 2, px: 2 }}>
147+
<Container maxWidth="md" sx={{ my: 2, px: 2, overflow: "visible" }}>
148148
<PlanCardWrapper>
149149
<Card
150150
elevation={2}
151151
sx={{
152+
overflow: "visible",
152153
maxWidth: 600,
153154
mx: "auto",
154155
border: "1px solid",

0 commit comments

Comments
 (0)