Skip to content

Commit

Permalink
Shrink font size for results
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmauro committed Apr 9, 2024
1 parent c2a8296 commit 2149ee7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/menu/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ fn score_history(parent: &mut ChildBuilder, scores: &ResMut<LatestGameScores>, f
format!("{}", score.n),
TextStyle {
font: font.clone(),
font_size: 32.0,
font_size: 24.0,
color: Color::rgb(0.9, 0.9, 0.9),
},
));
Expand All @@ -406,7 +406,7 @@ fn score_history(parent: &mut ChildBuilder, scores: &ResMut<LatestGameScores>, f
format!("{:.2}s", score.total_rounds as f32 * score.round_duration),
TextStyle {
font: font.clone(),
font_size: 32.0,
font_size: 24.0,
color: Color::rgb(0.9, 0.9, 0.9),
},
));
Expand All @@ -415,7 +415,7 @@ fn score_history(parent: &mut ChildBuilder, scores: &ResMut<LatestGameScores>, f
format!("{}%", score.f1_score_percent),
TextStyle {
font: font.clone(),
font_size: 32.0,
font_size: 24.0,
color: Color::rgb(0.9, 0.9, 0.9),
},
));
Expand Down

0 comments on commit 2149ee7

Please sign in to comment.