commit 3667dd7b2fce482f599fb81502e364ae45ab81c0
parent 44bacb1408cce341cdff7cda4185829bc22e5cfc
Author: Marcel <mtrnord1@gmail.com>
Date: Wed, 17 Jun 2020 23:33:39 +0200
Fix input box style
Took 2 minutes
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/components/input.rs b/src/app/components/input.rs
@@ -61,7 +61,7 @@ impl Component for Input {
fn view(&self) -> Html {
html! {
- <div class="uk-inline" style="display: block !important;">
+ <div class="uk-inline" style="display: block !important; padding-right: 40px;">
<span class="material-icons" id="ma-icon">{"create"}</span>
<input class="uk-input" type="text"
value=&self.state.value.as_ref().unwrap_or(&"".to_string())