gui: add paddings around *at* icon
This commit is contained in:
parent
30494d30bb
commit
3977d63b61
1 changed files with 2 additions and 0 deletions
|
@ -260,7 +260,9 @@ fn draw_peer_stats(ui: &mut egui::Ui, peer: &PeerStats, rounding: [bool; 2]) {
|
||||||
ui.heading(RichText::new(peer.total_difficulty.to_string())
|
ui.heading(RichText::new(peer.total_difficulty.to_string())
|
||||||
.color(COLOR_DARK)
|
.color(COLOR_DARK)
|
||||||
.size(16.0));
|
.size(16.0));
|
||||||
|
ui.add_space(2.0);
|
||||||
ui.heading(RichText::new(AT).color(COLOR_DARK).size(16.0));
|
ui.heading(RichText::new(AT).color(COLOR_DARK).size(16.0));
|
||||||
|
ui.add_space(2.0);
|
||||||
ui.heading(RichText::new(peer.height.to_string())
|
ui.heading(RichText::new(peer.height.to_string())
|
||||||
.color(COLOR_DARK)
|
.color(COLOR_DARK)
|
||||||
.size(16.0));
|
.size(16.0));
|
||||||
|
|
Loading…
Reference in a new issue