Fix kilroy position on about page.

This commit is contained in:
Shaun Reed 2026-01-30 23:21:45 -05:00
parent 99ad6be5f2
commit 7306e09181

View File

@ -35,8 +35,8 @@ impl Widget for About {
"CLIDE WAS HERE", "CLIDE WAS HERE",
]; ];
let kilroy_rect = Rect { let kilroy_rect = Rect {
x: area.x, x: chunks[1].x,
y: area.y + 7, y: chunks[1].y - kilroy.len() as u16 + 2,
width: area.width, width: area.width,
height: kilroy.len() as u16, height: kilroy.len() as u16,
}; };