From 7d55666b17a117d7ef4d4393872e7bee136f10a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Wed, 6 Apr 2022 11:14:33 -0300 Subject: [PATCH] feat(ui): update header box-shadown and title color --- src/components/Header/styles.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/Header/styles.ts b/src/components/Header/styles.ts index 38870bd8..5f06f724 100644 --- a/src/components/Header/styles.ts +++ b/src/components/Header/styles.ts @@ -9,15 +9,18 @@ const LocalHeader = styled.header` backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.1); - box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.05); h1 { font-weight: 500; a { text-decoration: none; - color: rgba(255, 255, 255, 0.7); + color: rgba(255, 255, 255, 0.89); } } + + @media (min-width: 800px) { + box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.05); + } ` export default LocalHeader