Skip to content

Instantly share code, notes, and snippets.

@igorasilveira
Created February 19, 2022 09:40
Show Gist options
  • Save igorasilveira/c151409d361802950a952e15b474ab80 to your computer and use it in GitHub Desktop.
Save igorasilveira/c151409d361802950a952e15b474ab80 to your computer and use it in GitHub Desktop.
Navbar css
.nav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 24px;
font-size: 1.4rem;
font-weight: bold;
border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.nav button {
font-weight: bold;
font-size: 1.2rem;
padding: 12px 16px;
background-color: #42adf5;
border-radius: 8px;
border: none;
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment