From a62ada09f985b4f7d78871b911af72ec13b0bec4 Mon Sep 17 00:00:00 2001 From: Hwang Taehwan <107744534+stakbucks@users.noreply.github.com> Date: Thu, 3 Oct 2024 19:32:06 +0900 Subject: [PATCH] fix(bottle): bottle detail page height (#69) --- .../common/user-information/userInformationStyle.css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/bottle/src/components/common/user-information/userInformationStyle.css.ts b/apps/bottle/src/components/common/user-information/userInformationStyle.css.ts index abe0133..6721b5c 100644 --- a/apps/bottle/src/components/common/user-information/userInformationStyle.css.ts +++ b/apps/bottle/src/components/common/user-information/userInformationStyle.css.ts @@ -24,7 +24,7 @@ export const layoutStyle = recipe({ }, variants: { hasCTAButton: { - true: { height: `calc(100vh - ${CONTAINER_OFFSET_HEIGHT - OVERLAP_HEIGHT}px + env(safe-area-inset-top))` }, + true: { height: `calc(100vh - ${CONTAINER_OFFSET_HEIGHT - OVERLAP_HEIGHT}px - env(safe-area-inset-top))` }, false: { height: '100vh' }, }, },