From 121f37cb3881a7155134cf69dafa792883b81d68 Mon Sep 17 00:00:00 2001 From: bluewhaleyh Date: Sat, 31 Aug 2024 15:52:39 +0900 Subject: [PATCH] =?UTF-8?q?fix/#61:=20=EA=B0=81=EC=A2=85=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ssh-web/src/pages/Egg/EggFetch.styles.ts | 2 +- ssh-web/src/utils/appUtil.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ssh-web/src/pages/Egg/EggFetch.styles.ts b/ssh-web/src/pages/Egg/EggFetch.styles.ts index d15a62f..505170a 100644 --- a/ssh-web/src/pages/Egg/EggFetch.styles.ts +++ b/ssh-web/src/pages/Egg/EggFetch.styles.ts @@ -1,7 +1,7 @@ import { tv } from 'tailwind-variants'; export const contentStyles = tv({ - base: 'flex flex-col justify-between items-center desktop:w-[48rem] desktop:h-[48rem] desktop:rounded-lg desktop:py-0 tablet:w-full tablet:h-full tablet:rounded-t-[2rem] tablet:py-8 mob:!pb-0 bg-primary-100 px-4', + base: 'flex flex-col justify-between items-center desktop:w-[48rem] desktop:h-[48rem] desktop:rounded-lg desktop:py-0 tablet:w-full tablet:h-full tablet:rounded-t-[2rem] tablet:py-8 mob:!pb-0 bg-primary-100 px-4 bg-white', }); export const containerStyles = tv({ diff --git a/ssh-web/src/utils/appUtil.ts b/ssh-web/src/utils/appUtil.ts index 565ba3b..caf15fd 100644 --- a/ssh-web/src/utils/appUtil.ts +++ b/ssh-web/src/utils/appUtil.ts @@ -16,6 +16,6 @@ export const getNavHasBack = (path?: string) => { return true; }; export const getHasBottom = (path: string) => { - if (path === '/mypage') return false; + if (path === '/mypage' || path === '/quiz/solve') return false; return true; };