number_input: Fix Number Input border to use cx.theme.input. (#521)
This commit is contained in:
parent
d7cd0e54c2
commit
ecce9f2633
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ impl Render for NumberInput {
|
||||||
.px_1()
|
.px_1()
|
||||||
.gap_x_3()
|
.gap_x_3()
|
||||||
.bg(cx.theme().background)
|
.bg(cx.theme().background)
|
||||||
.border_color(cx.theme().border)
|
.border_color(cx.theme().input)
|
||||||
.border_1()
|
.border_1()
|
||||||
.rounded_md()
|
.rounded_md()
|
||||||
.when(focused, |this| this.outline(cx))
|
.when(focused, |this| this.outline(cx))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue