diff --git a/node-launchpad/src/components/discord_username.rs b/node-launchpad/src/components/discord_username.rs index 4d4332dcaf..6127ca2d5c 100644 --- a/node-launchpad/src/components/discord_username.rs +++ b/node-launchpad/src/components/discord_username.rs @@ -133,7 +133,12 @@ impl Component for DiscordUsernameInputBox { let input = Paragraph::new(self.discord_input_filed.value()) .scroll((0, scroll as u16)) // border left so that it doesn't conflict with layer_zero's border - .block(Block::default().borders(Borders::LEFT)); + .block( + Block::default() + .borders(Borders::LEFT) + .border_type(BorderType::Double) + .border_style(Style::new().bold()), + ); f.set_cursor( // Put cursor past the end of the input text