From 03cb6d66e7c6791594fe18a68b62e4541c259554 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 14 Jan 2021 18:59:43 -0800 Subject: [PATCH] fix: Alignment of collection icon in header when collection name is very long --- app/components/Heading.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/components/Heading.js b/app/components/Heading.js index 763c5e382d..f625d43efb 100644 --- a/app/components/Heading.js +++ b/app/components/Heading.js @@ -7,8 +7,11 @@ const Heading = styled.h1` ${(props) => (props.centered ? "text-align: center;" : "")} svg { + margin-top: 4px; margin-left: -6px; margin-right: 2px; + align-self: flex-start; + flex-shrink: 0; } `;