Skip to content

Commit 8ac0149

Browse files
committed
chore: 자잘한 스타일 정의 수정
1 parent e71d63e commit 8ac0149

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

apps/pyconkr/src/styles/globalStyles.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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 {

packages/common/src/components/centered_page.tsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,7 @@ import { Stack } from "@mui/material";
22
import * as React from "react";
33

44
export 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
);

0 commit comments

Comments
 (0)