mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-16 17:20:33 +00:00
* Add new CSS, JS, and icon assets to rustfs-gui - Add `navbar.css` for styling the navigation bar. - Add `sts.js` for handling tab switching and password toggling. - Include new icon assets in `assets/icons` directory. - Update `Dioxus.toml` to reference new assets. * Remove unused icons from dioxus.toml - Remove `assets/icons/icon_*.png` from the icon list.
16 lines
232 B
CSS
16 lines
232 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: #ffffff; // #91a4d2;
|
|
} |