Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Oct 24, 2023
1 parent 8a3bb2f commit f00df87
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/mod.rs
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ fn TopBar(cx: Scope) -> Element {
let health_checks = state.health_checks.read();
let nix_info = state.nix_info.read();
render! {
div { class: "flex justify-between items-center w-full p-2 bg-base-200 sticky top-0",
div { class: "flex justify-between items-center w-full p-2 bg-primary-100 sticky top-0 shadow",
div { class: "flex space-x-2",
Link { to: Route::Dashboard {}, "🏠" }
Link { to: Route::Health {},
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ async fn main() {
.with_custom_head(r#" <link rel="stylesheet" href="tailwind.css"> "#.to_string())
.with_window(
WindowBuilder::new()
.with_title("nix-browser")
.with_title("Nix Browser")
.with_inner_size(LogicalSize::new(900, 600)),
),
)

0 comments on commit f00df87

Please sign in to comment.