Add border to input field
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
dfe012b4c9
commit
b13de01cce
@ -62,11 +62,20 @@ view state =
|
||||
, value state.url
|
||||
, onInput UrlChange
|
||||
, autofocus True
|
||||
, style "border" "1px solid #595959"
|
||||
]
|
||||
)
|
||||
[]
|
||||
, label [ for "output" ] []
|
||||
, input (myStyle [ id "output", readonly True, value (displayMUrl state.parsed) ]) []
|
||||
, input
|
||||
(myStyle
|
||||
[ id "output"
|
||||
, readonly True
|
||||
, value (displayMUrl state.parsed)
|
||||
, style "border" "1px solid #595959"
|
||||
]
|
||||
)
|
||||
[]
|
||||
]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user