File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed
docs/src/components/pricing Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import Tooltip from '@mui/material/Tooltip';
1010import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined' ;
1111import { useRouter } from 'next/router' ;
1212import KeyboardArrowRightRounded from '@mui/icons-material/KeyboardArrowRightRounded' ;
13+ import OpenInNewRoundedIcon from '@mui/icons-material/OpenInNewRounded' ;
1314import LaunchRounded from '@mui/icons-material/LaunchRounded' ;
1415import UnfoldMoreRounded from '@mui/icons-material/UnfoldMoreRounded' ;
1516import { 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 }
You can’t perform that action at this time.
0 commit comments