From c3a8ac328cda9a84146cdf4adad68f6da6f84af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Mon, 3 Jan 2022 12:59:11 -0300 Subject: [PATCH] feat(ui): update gap between sounds --- src/styles/pages/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/pages/index.ts b/src/styles/pages/index.ts index e7cc6ddb..d92ff563 100644 --- a/src/styles/pages/index.ts +++ b/src/styles/pages/index.ts @@ -3,7 +3,7 @@ import styled from 'styled-components' export const SoundGridLayout = styled.div` display: grid; grid-template-columns: 1fr; - gap: 30px; + gap: 50px; margin: 25px auto; @@ -21,5 +21,6 @@ export const SoundGridLayout = styled.div` @media (min-width: 700px) { grid-template-columns: repeat(5, 1fr); + gap: 30px; } `