From 5ddc4000d0ee58b35bbae71b4a3ad144cddc9a2c Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 10 Aug 2020 16:23:55 -0700 Subject: [PATCH] fixes: Strange scroll behavior on long collection descriptions closes #1391 --- app/components/InputRich.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/InputRich.js b/app/components/InputRich.js index 143249d3..7c3a29f6 100644 --- a/app/components/InputRich.js +++ b/app/components/InputRich.js @@ -78,6 +78,7 @@ class InputRich extends React.Component { } const StyledOutline = styled(Outline)` + display: block; padding: 8px 12px; min-height: ${({ minHeight }) => (minHeight ? `${minHeight}px` : "0")}; max-height: ${({ maxHeight }) => (maxHeight ? `${maxHeight}px` : "auto")};