From 668464fb6e0c36b459fab2d4264be54718672c14 Mon Sep 17 00:00:00 2001 From: nateejpg Date: Fri, 16 Aug 2024 22:51:52 -0300 Subject: [PATCH] fix: Ajustando responsividade. --- .../campo-pesquisa/style.module.css | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/frontend/src/components/campo-pesquisa/style.module.css b/frontend/src/components/campo-pesquisa/style.module.css index 2c776655..487c0baa 100644 --- a/frontend/src/components/campo-pesquisa/style.module.css +++ b/frontend/src/components/campo-pesquisa/style.module.css @@ -38,3 +38,29 @@ border: none; outline: none; } + +.campoPesquisaWrapper { + display: flex; + align-items: center; + justify-content: space-between; + width: 100%; + gap: 56px; + margin-top: 40px; + margin-bottom: 40px; +} + + +@media(max-width: 1300px ){ + + + .campoPesquisaWrapper { + + gap: 20px; + } + + + .inputStyle { + font-size: 18px; + } + + }