Skip to content

Commit 1e16621

Browse files
committed
fix typos, change global colors
1 parent d017dd4 commit 1e16621

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

crates/ui/global.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141

4242
@media (prefers-color-scheme: dark) {
4343
:root {
44-
--background-color: #111111;
45-
--border-color: #212121;
46-
--header-color: #232323;
44+
--background-color: #000000;
45+
--border-color: #151515;
46+
--header-color: #161616;
4747
--hover-color: #333333;
4848
--surface-color: #181818;
4949
--muted-text-color: #aaaaaa;
@@ -67,4 +67,4 @@ body {
6767
font-family: JetBrains Mono, monospace, sans-serif;
6868
margin: 0;
6969
line-height: 1;
70-
}
70+
}

crates/www/routes/about/server/page.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
use pinwheel::prelude::*;
21
use modelfox_ui as ui;
32
use modelfox_www_layouts::{document::Document, page_layout::PageLayout};
3+
use pinwheel::prelude::*;
44

55
pub struct Page;
66

@@ -12,7 +12,7 @@ impl Component for Page {
1212
.title("[email protected]".to_string())
1313
.child("[email protected]");
1414
let p2 = ui::P::new()
15-
.child("We would love to hear from you, please don't hesistate to reach out! ")
15+
.child("We would love to hear from you, please don't hesitate to reach out! ")
1616
.child(link);
1717
let modelfox = ui::S2::new()
1818
.child(ui::H1::new("About"))

crates/www/routes/index/server/production_metrics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
use pinwheel::prelude::*;
21
use modelfox_charts::{
32
common::GridLineInterval,
43
components::LineChart,
54
line_chart::{LineChartPoint, LineChartSeries, LineStyle, PointStyle},
65
};
76
use modelfox_finite::Finite;
87
use modelfox_ui as ui;
8+
use pinwheel::prelude::*;
99

1010
pub struct ProductionMetrics;
1111

@@ -253,7 +253,7 @@ impl Component for ProductionMetrics {
253253
title: Some("Production".to_owned()),
254254
},
255255
];
256-
let text = "After logging true values, you can view metrics comparing your model's performance in production vs. training. The app will automatically alert you if a signficant difference is detected.";
256+
let text = "After logging true values, you can view metrics comparing your model's performance in production vs. training. The app will automatically alert you if a significant difference is detected.";
257257
let left = div()
258258
.child(div().class("index-step-title").child("Monitor metrics."))
259259
.child(div().class("index-step-text").child(text));

0 commit comments

Comments
 (0)