From 61129a7fcc74001e97e51fc4eb1f1d05e60e85be Mon Sep 17 00:00:00 2001 From: kyuhho Date: Thu, 10 Oct 2024 22:05:47 +0900 Subject: [PATCH] chore: init `APP_HEIGHT` (#380) --- src/styles/AppStyle.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/styles/AppStyle.ts b/src/styles/AppStyle.ts index d51fa842..6b0d85b0 100644 --- a/src/styles/AppStyle.ts +++ b/src/styles/AppStyle.ts @@ -1,3 +1,6 @@ +/** App Height should use under AppLayout (userViewResize) */ +export const APP_HEIGHT = 'calc(var(--vh, 1vh) * 100)'; + export const APP_WIDTH = '37.5rem'; export const APP_HEADER_HEIGHT = '5.2rem';