aboutsummaryrefslogtreecommitdiff
path: root/src/Styles.elm
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-11-22 17:06:42 +0000
committerAkshay <[email protected]>2020-11-22 17:06:42 +0000
commit86bd94ec91e88f3a50a02daf051fcca316db09a5 (patch)
tree16e8bc17ffaf27b3938991b8a4b825dbfd6ad6c5 /src/Styles.elm
parentdea97903678804c9b82039dddf7b3c461dfa514e (diff)
begin work on layouting and global styling
Diffstat (limited to 'src/Styles.elm')
-rw-r--r--src/Styles.elm9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Styles.elm b/src/Styles.elm
index 57c124b..36bd1a3 100644
--- a/src/Styles.elm
+++ b/src/Styles.elm
@@ -65,3 +65,12 @@ styledTextBox =
65 , width (px 500) 65 , width (px 500)
66 , display inlineBlock 66 , display inlineBlock
67 ] 67 ]
68
69
70actionContainer : List (Attribute msg) -> List (Html msg) -> Html msg
71actionContainer =
72 styled
73 div
74 [ padding (px 12)
75 , width (pct 100)
76 ]