File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed
packages/common/src/components Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,8 @@ export const globalStyles = css`
9797 -moz-user-drag : none;
9898 -o-user-drag : none;
9999 user-drag : none;
100+
101+ font-variant-numeric : tabular-nums;
100102 }
101103
102104 a {
Original file line number Diff line number Diff line change @@ -2,18 +2,7 @@ import { Stack } from "@mui/material";
22import * as React from "react" ;
33
44export const CenteredPage : React . FC < React . PropsWithChildren > = ( { children } ) => (
5- < Stack
6- justifyContent = "center"
7- alignItems = "center"
8- sx = { {
9- width : "100%" ,
10- height : "100%" ,
11- minHeight : "100%" ,
12- maxHeight : "100%" ,
13- flexGrow : 1 ,
14- py : 2 ,
15- } }
16- >
5+ < Stack justifyContent = "center" alignItems = "center" sx = { { minHeight : "100%" , maxHeight : "100%" } } >
176 { children }
187 </ Stack >
198) ;
You can’t perform that action at this time.
0 commit comments