From e41741cf77534be945050719da7e320c4702ca1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Tue, 8 Oct 2024 20:06:18 +0200 Subject: [PATCH] FIX: Change border color between toolbox and formula bar to grey-300 --- webapp/src/AppComponents/FileBar.tsx | 2 +- webapp/src/components/toolbar.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/AppComponents/FileBar.tsx b/webapp/src/AppComponents/FileBar.tsx index 99d48e3..63f8baa 100644 --- a/webapp/src/AppComponents/FileBar.tsx +++ b/webapp/src/AppComponents/FileBar.tsx @@ -97,7 +97,7 @@ const FileBarWrapper = styled("div")` background: #fff; display: flex; align-items: center; - border-bottom: 1px solid grey; + border-bottom: 1px solid #E0E0E0; position: relative; justify-content: space-between; `; diff --git a/webapp/src/components/toolbar.tsx b/webapp/src/components/toolbar.tsx index f63c581..eba7e36 100644 --- a/webapp/src/components/toolbar.tsx +++ b/webapp/src/components/toolbar.tsx @@ -393,7 +393,7 @@ const ToolbarContainer = styled("div")` background: ${({ theme }) => theme.palette.background.paper}; height: ${toolbarHeight}px; line-height: ${toolbarHeight}px; - border-bottom: 1px solid ${({ theme }) => theme.palette.grey["600"]}; + border-bottom: 1px solid ${({ theme }) => theme.palette.grey["300"]}; font-family: Inter; border-radius: 4px 4px 0px 0px; overflow-x: auto;