summaryrefslogtreecommitdiffstats
path: root/src/Pages
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2021-11-05 09:02:55 +0200
committerJan Tuomi <jan.tuomi@valuemotive.com>2021-11-05 09:02:55 +0200
commit32a6ffc0c117b4ef28ea9f74517de77f8fafff1a (patch)
treef2f27d060b9f4f1b2a71684ce5e43e6a65b1a9ab /src/Pages
parent0f0f194cef76a5c1b815a793314e0aca745dd311 (diff)
Styling
Diffstat (limited to 'src/Pages')
-rw-r--r--src/Pages/Feed.elm5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Pages/Feed.elm b/src/Pages/Feed.elm
index 5afbbda..42e934d 100644
--- a/src/Pages/Feed.elm
+++ b/src/Pages/Feed.elm
@@ -16,11 +16,14 @@ styles =
css
[ displayFlex
, flexFlow2 row wrap
+ , margin3 (px -5) (px -5) (px 10)
]
, composeInput =
css
[ flex (int 1)
+ , margin (px 5)
]
+ , submitButton = css [ margin (px 5) ]
}
@@ -57,7 +60,7 @@ composeForm model =
, value model.composeImageInputValue
]
[]
- , button [ type_ "submit" ] [ text "➡️" ]
+ , button [ styles.submitButton, type_ "submit" ] [ text "➡️" ]
]