dioxus-dx-run-test/ui/assets/styling/navbar.css
2025-03-19 11:32:32 -05:00

16 lines
No EOL
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;
}