This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
little-lemon/src/styles/Header.css
2023-07-29 18:39:27 -04:00

30 lines
368 B
CSS

nav {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
gap: 3rem;
}
header img {
height: 3.5rem;
max-width: 20rem;
}
nav ul {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 2rem;
border-radius: 2rem;
list-style: none;
margin: 0;
}
nav a {
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}