From 1f6a0f12ed1eeec41f669c00435603879bc62ae0 Mon Sep 17 00:00:00 2001 From: Camille Date: Wed, 25 Jan 2023 11:24:39 +0100 Subject: [PATCH] fix(css): flex wrap when no space in cssRow right panel styles --- app/client/ui/RightPanelStyles.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/client/ui/RightPanelStyles.ts b/app/client/ui/RightPanelStyles.ts index 89e1e1bc..52fbb77d 100644 --- a/app/client/ui/RightPanelStyles.ts +++ b/app/client/ui/RightPanelStyles.ts @@ -22,6 +22,8 @@ export const cssHelp = styled('div', ` export const cssRow = styled('div', ` display: flex; + flex-wrap: wrap; + row-gap: 5px; margin: 8px 16px; align-items: center; color: ${theme.text};