From e2c4766b9d649f5cd23e384080f5529fd434deaf Mon Sep 17 00:00:00 2001 From: lucasferreiralimax Date: Sun, 27 Oct 2024 16:26:20 -0300 Subject: [PATCH] update style of input serach --- src/App.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/App.scss b/src/App.scss index 8016f56..2bb2cb0 100644 --- a/src/App.scss +++ b/src/App.scss @@ -1,4 +1,17 @@ .input-search { + padding: 1rem; + margin: 0 0 1rem; + border-radius: 10px; + background: var(--vtl-background); border: 1px solid var(--vtl-background); box-shadow: 0 0 0 1px #fff3; + color: var(--vtl-text); + width: calc(100% - 2rem); +} + +.not-found { + display: flex; + flex-direction: column-reverse; + justify-content: center; + align-items: center; }