From c33467b4d00d9bf94f130dcc090515ab2a7c1b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=BCl=C3=B6p?= <43729152+fulopkovacs@users.noreply.github.com> Date: Wed, 1 Jun 2022 21:42:12 +0200 Subject: [PATCH] Fix the height of the "new update"-text (#191) Make sure that the version number of the container does not overflow to the next menu item --- theatre/studio/src/toolbars/MoreMenu/MoreMenu.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/theatre/studio/src/toolbars/MoreMenu/MoreMenu.tsx b/theatre/studio/src/toolbars/MoreMenu/MoreMenu.tsx index 7dd5633..b208863 100644 --- a/theatre/studio/src/toolbars/MoreMenu/MoreMenu.tsx +++ b/theatre/studio/src/toolbars/MoreMenu/MoreMenu.tsx @@ -63,6 +63,8 @@ const Link = styled(Item)` ` const VersionContainer = styled(Item)` + height: auto; + min-height: 32px; padding-top: 12px; padding-bottom: 10px; flex-direction: column;