From b13de01cce14b0cde2336bd6bf15617d7c17f930 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Mon, 12 Aug 2019 18:22:31 +0200 Subject: [PATCH] Add border to input field --- frontend/src/Main.elm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index 27e3aa5..dbc9d2e 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -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" + ] + ) + [] ]