Skip to content

Commit fcecae8

Browse files
authored
Merge branch 'master' into cherry-pick-43141
Signed-off-by: Diego Andai <[email protected]>
2 parents 716e8f4 + b6b702f commit fcecae8

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

docs/src/components/pricing/PricingTable.tsx

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import Tooltip from '@mui/material/Tooltip';
1010
import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined';
1111
import { useRouter } from 'next/router';
1212
import KeyboardArrowRightRounded from '@mui/icons-material/KeyboardArrowRightRounded';
13+
import OpenInNewRoundedIcon from '@mui/icons-material/OpenInNewRounded';
1314
import LaunchRounded from '@mui/icons-material/LaunchRounded';
1415
import UnfoldMoreRounded from '@mui/icons-material/UnfoldMoreRounded';
1516
import { Link } from '@mui/docs/Link';
@@ -142,7 +143,16 @@ export function PlanPrice(props: PlanPriceProps) {
142143
{priceUnit}
143144
</Typography>
144145
</Box>
145-
<Box sx={{ minHeight: planPriceMinHeight }}>
146+
<Box
147+
sx={{
148+
display: 'flex',
149+
flexDirection: 'column',
150+
alignItems: 'center',
151+
gap: 2,
152+
mb: 2,
153+
minHeight: planPriceMinHeight,
154+
}}
155+
>
146156
{(annual || monthlyDisplay) && (
147157
<Typography variant="body2" color="text.secondary" textAlign="center">
148158
{priceExplanation}
@@ -216,7 +226,16 @@ export function PlanPrice(props: PlanPriceProps) {
216226
{priceUnit}
217227
</Typography>
218228
</Box>
219-
<Box sx={{ minHeight: planPriceMinHeight }}>
229+
<Box
230+
sx={{
231+
display: 'flex',
232+
flexDirection: 'column',
233+
alignItems: 'center',
234+
gap: 2,
235+
mb: 2,
236+
minHeight: planPriceMinHeight,
237+
}}
238+
>
220239
{(annual || monthlyDisplay) && (
221240
<Typography variant="body2" color="text.secondary" textAlign="center">
222241
{priceExplanation}

0 commit comments

Comments
 (0)