From 7acd8545fea0d929f3059d27a97b204f41450c26 Mon Sep 17 00:00:00 2001 From: NetMan <13informatyka14@gmail.com> Date: Fri, 29 Dec 2023 17:28:53 +0100 Subject: [PATCH] Completed exercise 02 --- 02-flex-header/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/02-flex-header/style.css b/02-flex-header/style.css index cb598c9..8369143 100644 --- a/02-flex-header/style.css +++ b/02-flex-header/style.css @@ -1,6 +1,11 @@ .header { font-family: monospace; background: papayawhip; + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px; + gap: 25px; } .logo { @@ -14,6 +19,10 @@ ul { /* this removes the dots on the list items*/ list-style-type: none; + display: flex; + padding: 0; + margin: 0; + gap: 15px; } a {