From da83f8403e9cc6fcfb69de737f60505300ea7b29 Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 25 Jan 2024 18:28:50 +0800 Subject: [PATCH] fix: sometimes app main content not fill the window (#2208) --- .../app/(appDetailLayout)/[appId]/style.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/style.module.css b/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/style.module.css index 2d6b3bd15c..16392a5b4b 100644 --- a/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/style.module.css +++ b/web/app/(commonLayout)/app/(appDetailLayout)/[appId]/style.module.css @@ -1,5 +1,6 @@ .app { - height: calc(100vh - 56px); + flex-grow: 1; + height: 0; border-radius: 16px 16px 0px 0px; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 0px 0px 2px -1px rgba(0, 0, 0, 0.03); } \ No newline at end of file