From ec6b3c3368edd1cb104513ad462ffbe24da1f2fb Mon Sep 17 00:00:00 2001 From: AykutSarac Date: Wed, 2 Feb 2022 21:11:42 +0300 Subject: [PATCH] remove borders from editor --- src/pages/editor/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/pages/editor/index.tsx b/src/pages/editor/index.tsx index 7c5b5e6..fd05ef9 100644 --- a/src/pages/editor/index.tsx +++ b/src/pages/editor/index.tsx @@ -17,7 +17,7 @@ const StyledTools = styled.div` display: flex; align-items: center; height: 36px; - border: 1px solid ${({ theme }) => theme.BLACK}; + border-bottom: 1px solid ${({ theme }) => theme.BLACK}; padding: 4px 16px; background: ${({ theme }) => theme.BLACK_SECONDARY}; color: ${({ theme }) => theme.SILVER}; @@ -26,9 +26,7 @@ const StyledTools = styled.div` const StyledEditor = styled.div` display: flex; background: ${({ theme }) => theme.BLACK_LIGHT}; - border: 1px solid ${({ theme }) => theme.BLACK}; - border-top: none; - height: calc(100vh - 48px); + height: calc(100vh - 46px); `;