From 4177e7c356abb1ea294afb101c29b64a015ae0c1 Mon Sep 17 00:00:00 2001 From: Miguel Ripoll <3296866+MiguelRipoll23@users.noreply.github.com> Date: Sun, 10 Mar 2024 01:44:44 +0100 Subject: [PATCH] Fix refresh icon --- src/components/RefreshIcon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/RefreshIcon.js b/src/components/RefreshIcon.js index a85ea03..250239e 100644 --- a/src/components/RefreshIcon.js +++ b/src/components/RefreshIcon.js @@ -2,7 +2,7 @@ import styled from "styled-components"; const RefreshIconStyled = styled.button` font-family: icons; - font-size: 32px; + font-size: 34px; color: #fff; background: var(--color-blue); position: fixed; @@ -17,7 +17,7 @@ const RefreshIconStyled = styled.button` & span { position: relative; - top: -3px; + top: -2px; } `;