From a854654e389d67ecf4c93d1483c482fdd0ae90b7 Mon Sep 17 00:00:00 2001 From: Chika Date: Tue, 15 Sep 2020 19:23:54 +0300 Subject: [PATCH] make logo less small --- src/client/Elements/Text.jsx | 5 +---- src/client/Layout/Logo.jsx | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/client/Elements/Text.jsx b/src/client/Elements/Text.jsx index ac3e82e..1aa1858 100644 --- a/src/client/Elements/Text.jsx +++ b/src/client/Elements/Text.jsx @@ -9,11 +9,8 @@ export const LogoText = styled.h3` text-transform: uppercase; color: white; font-size: 1.12rem; - ${mq.tablet` - font-size: 1.3rem; - `} ${mq.desktop` - font-size: 1.45rem; + font-size: 1.2rem; `} font-weight: 300; letter-spacing: 2px; diff --git a/src/client/Layout/Logo.jsx b/src/client/Layout/Logo.jsx index 80aacbc..84c3cd8 100644 --- a/src/client/Layout/Logo.jsx +++ b/src/client/Layout/Logo.jsx @@ -12,10 +12,10 @@ const LogoWrapper = styled(Box)` const Image = styled.img` height: 30px; ${mq.tablet` - height: 38px; + height: 35px; `} ${mq.desktop` - height: 45px; + height: 40px; `} `;