Skip to content

Commit

Permalink
number_input: Fix Number Input border to use cx.theme.input.
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Dec 27, 2024
1 parent d7cd0e5 commit 3be2c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ui/src/number_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl Render for NumberInput {
.px_1()
.gap_x_3()
.bg(cx.theme().background)
.border_color(cx.theme().border)
.border_color(cx.theme().input)
.border_1()
.rounded_md()
.when(focused, |this| this.outline(cx))
Expand Down

0 comments on commit 3be2c6f

Please sign in to comment.