From 2d52b5a8733bccba663b15817685b13d8b5eb9da Mon Sep 17 00:00:00 2001 From: Sidharth Guglani Date: Tue, 25 Feb 2020 07:27:56 -0800 Subject: [PATCH] fix layout tab height issue in playground on home page Summary: Fixed layout tab height issue properly Reviewed By: danielbuechele Differential Revision: D20003594 fbshipit-source-id: 6d9ce89a5d82a83937e5cb0f989bb028e07d576f --- website/src/components/Playground/src/Editor.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/src/components/Playground/src/Editor.css b/website/src/components/Playground/src/Editor.css index 78974f63..57954947 100644 --- a/website/src/components/Playground/src/Editor.css +++ b/website/src/components/Playground/src/Editor.css @@ -52,7 +52,9 @@ .Editor .ant-tabs-tabpane { overflow-y: auto; - height: 45vh; + min-height: 320px; + height: 100%; + max-height: 25vh; padding: 15px; }