diff --git a/src/app/account/profile/page.css.ts b/src/app/account/profile/page.css.ts index 376773c6..6fb6688b 100644 --- a/src/app/account/profile/page.css.ts +++ b/src/app/account/profile/page.css.ts @@ -4,7 +4,7 @@ import { style } from '@vanilla-extract/css'; export const page = style({ margin: 'auto', maxWidth: 430, - height: '100vh', + minHeight: '100vh', display: 'flex', flexDirection: 'column', @@ -17,6 +17,8 @@ export const content = style({ width: '100%', padding: '18px 16px', + flexGrow: 1, + display: 'flex', flexDirection: 'column', alignItems: 'center', diff --git a/src/styles/GlobalStyles.css.ts b/src/styles/GlobalStyles.css.ts index a7465333..c487d605 100644 --- a/src/styles/GlobalStyles.css.ts +++ b/src/styles/GlobalStyles.css.ts @@ -8,10 +8,6 @@ globalStyle('html', { backgroundColor: vars.color.white, }); -globalStyle('body', { - backgroundColor: '#F5F6FA !important', -}); - globalStyle('body *', { boxSizing: 'border-box', fontFamily: Pretendard, @@ -22,7 +18,6 @@ globalStyle('body, div, span, h1, h2, h3, h4, h5, h6, p, a, dl, dt, dd, ol, ul, margin: 0, padding: 0, border: 0, - maxWidth: 430, }); globalStyle('a', { @@ -31,10 +26,6 @@ globalStyle('a', { cursor: 'pointer', }); -globalStyle('ol, ul', { - listStyle: 'none', -}); - globalStyle('button', { cursor: 'pointer', color: vars.color.black,