diff --git a/03-flex-header-2/style.css b/03-flex-header-2/style.css index bf4c8af..264e50a 100644 --- a/03-flex-header-2/style.css +++ b/03-flex-header-2/style.css @@ -12,6 +12,10 @@ body { background: white; border-bottom: 1px solid #ddd; box-shadow: 0 0 8px rgba(0,0,0,.1); + display: flex; + padding: 10px 16px; + align-items: center; + gap: 20px; } .profile-image { @@ -35,6 +39,8 @@ button { background: rebeccapurple; color: white; padding: 8px 24px; + height: fit-content; + margin-left: auto; } a { @@ -45,4 +51,7 @@ a { ul { list-style-type: none; + display: flex; + padding: 0; + gap: 12px; }