Skip to content

Commit

Permalink
chore: use consistent border styles
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin authored and joshuef committed May 9, 2024
1 parent 82ddedf commit d841f32
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion node-launchpad/src/components/discord_username.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d841f32

Please sign in to comment.