Files
squad-quote-store/assets/styling/navbar.css
2026-01-12 16:21:15 -06:00

16 lines
220 B
CSS

#navbar {
display: flex;
flex-direction: row;
}
#navbar a {
color: #ffffff;
margin-right: 20px;
text-decoration: none;
transition: color 0.2s ease;
}
#navbar a:hover {
cursor: pointer;
color: #91a4d2;
}