dioxus-dx-run-test/ui/assets/styling/navbar.css

16 lines
220 B
CSS
Raw Normal View History

2025-03-19 11:32:32 -05:00
#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;
}