Add border to input field
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Valentin Brandl 2019-08-12 18:22:31 +02:00
parent dfe012b4c9
commit b13de01cce
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -62,11 +62,20 @@ view state =
, value state.url , value state.url
, onInput UrlChange , onInput UrlChange
, autofocus True , autofocus True
, style "border" "1px solid #595959"
] ]
) )
[] []
, label [ for "output" ] [] , 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"
]
)
[]
] ]