diff --git a/src/components/Common/AppContainer.tsx b/src/components/Common/AppContainer.tsx index 24316b69..391d4bd0 100644 --- a/src/components/Common/AppContainer.tsx +++ b/src/components/Common/AppContainer.tsx @@ -51,6 +51,7 @@ export const AppContainer = ({ children }: AppContainerProps) => { // // Redirect to inspection page when service is shut down useManipulateServerDown(); + // // // diff --git a/src/pages/Seller/SellerOpenConsult.tsx b/src/pages/Seller/SellerOpenConsult.tsx index d9541a3e..1a5f289a 100644 --- a/src/pages/Seller/SellerOpenConsult.tsx +++ b/src/pages/Seller/SellerOpenConsult.tsx @@ -8,7 +8,7 @@ import OpenConsultHeader from 'components/Seller/SellerOpenConsult/OpenConsultHe import { useState } from 'react'; import { useParams } from 'react-router-dom'; import { useRecoilValue } from 'recoil'; -import { APP_HEADER_HEIGHT } from 'styles/AppStyle'; +import { APP_HEADER_HEIGHT, APP_HEIGHT } from 'styles/AppStyle'; import { isSendPopupOpenState } from 'utils/atom'; // @@ -36,7 +36,10 @@ function SellerOpenConsult() { return ( <>
{ setIsReplying(false); }} 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';