From 26c428a495d338c9e916175e045ad5ba6e959f9a Mon Sep 17 00:00:00 2001 From: Sohyun Park <124856726+ParkSohyunee@users.noreply.github.com> Date: Sat, 23 Nov 2024 14:03:13 +0900 Subject: [PATCH] =?UTF-8?q?Design:=20=EA=B8=80=EB=A1=9C=EB=B2=8C=20?= =?UTF-8?q?=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20?= =?UTF-8?q?=EC=B5=9C=EC=A2=85=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=A0=90?= =?UTF-8?q?=EA=B2=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/account/profile/page.css.ts | 4 +++- src/styles/GlobalStyles.css.ts | 9 --------- 2 files changed, 3 insertions(+), 10 deletions(-) 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,