From 5b545e5bc698144b01323de131649324930d5d1e Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Thu, 1 Jun 2023 01:01:17 +0200 Subject: [PATCH] Fix design Add button in top bar --- front/src/layout/top-bar/TopBar.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/front/src/layout/top-bar/TopBar.tsx b/front/src/layout/top-bar/TopBar.tsx index 9d3eda056..6d7ed069b 100644 --- a/front/src/layout/top-bar/TopBar.tsx +++ b/front/src/layout/top-bar/TopBar.tsx @@ -24,9 +24,10 @@ const TitleContainer = styled.div` const AddButtonContainer = styled.div` display: flex; justify-self: flex-end; + flex-shrink: 0; border: 1px solid ${(props) => props.theme.primaryBorder}; - width: 30px; - height: 30px; + width: 28px; + height: 28px; align-items: center; justify-content: center; border-radius: 4px;