From d841f32f7f99aa13df434e0ef46436be9e789752 Mon Sep 17 00:00:00 2001 From: Roland Sherwin Date: Wed, 8 May 2024 17:26:27 +0530 Subject: [PATCH] chore: use consistent border styles --- node-launchpad/src/components/discord_username.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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