File tree Expand file tree Collapse file tree 1 file changed +15
-12
lines changed
src/pages/PrinterPage/components/AdjustSheets Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -214,18 +214,21 @@ export default function AdjustSheets(props: AdjustSheetsProps) {
214214 { ( size ) => {
215215 const [ widthCm , heightCm ] = pageSizeNameToCm ( size ) ;
216216 return (
217- < MenuItem value = { size } sx = { { alignItems : 'baseline' } } >
218- < span > { size } </ span >
219- < Typography
220- variant = "body2"
221- color = "textSecondary"
222- component = "span"
223- sx = { {
224- marginLeft : 0.5 ,
225- } }
226- >
227- { `(${ widthCm } cm x ${ heightCm } cm)` }
228- </ Typography >
217+ < MenuItem value = { size } >
218+ < span >
219+ { size }
220+ < Typography
221+ variant = "body2"
222+ color = "textSecondary"
223+ component = "span"
224+ sx = { {
225+ marginLeft : 0.5 ,
226+ alignSelf : 'center' ,
227+ } }
228+ >
229+ { `(${ widthCm } cm x ${ heightCm } cm)` }
230+ </ Typography >
231+ </ span >
229232 </ MenuItem >
230233 ) ;
231234 } }
You can’t perform that action at this time.
0 commit comments