Skip to content

Commit

Permalink
extend header
Browse files Browse the repository at this point in the history
  • Loading branch information
wintermute-cell committed May 21, 2024
1 parent 4d45374 commit ecc6aff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ fn render(frame: &mut Frame, state: &AppState, args: &Args, kb_string: &String,
title_block,
layout[0],
);
let title: Paragraph = Paragraph::new("ngrrram!").bold();
let title: Paragraph = Paragraph::new(Line::from(vec![
" ngrrram!".bold(),
" by winterveil".italic().gray(),
]));
frame.render_widget(
title.alignment(Alignment::Center),
Layout::default()
Expand Down

0 comments on commit ecc6aff

Please sign in to comment.