From dfdb7bc1c2d4331ae93f59ab2abec6faa1dd8abc Mon Sep 17 00:00:00 2001 From: Correl Date: Fri, 16 Jul 2021 12:08:11 -0400 Subject: [PATCH] Update search bar sizing --- www/src/App.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/src/App.elm b/www/src/App.elm index 90036e7..17cfa16 100644 --- a/www/src/App.elm +++ b/www/src/App.elm @@ -399,12 +399,12 @@ view model = , body = [ E.layout [ Background.color colors.background ] <| E.column [ E.width E.fill, E.spacing 20 ] - [ E.row [ E.spacing 10 ] + [ E.row [ E.spacing 10, E.width E.fill ] [ Input.text [ onEnter Search , Background.color colors.background , Font.color colors.text - , E.width (E.px 600) + , E.width E.fill ] { onChange = UpdateCriteria << UpdateName , text = model.criteria.query