From 4820b0c267422d3208cdb790b4c4798e6e758776 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Thu, 13 Oct 2022 14:09:15 -0300 Subject: [PATCH] =?UTF-8?q?feat(home):=20criado=20estiliza=C3=A7=C3=A3o=20?= =?UTF-8?q?do=20header.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index e69de29..6961313 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -0,0 +1,20 @@ +/* GLOBAL */ +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +/* HEADER */ + +header { + width: 100%; + height: 101px; + background-color: #000; + display: grid; + place-content: center; +} + +header a { + width: 11%; +} \ No newline at end of file