aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Styles.elm
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/Styles.elm')
-rw-r--r--frontend/src/Styles.elm21
1 files changed, 21 insertions, 0 deletions
diff --git a/frontend/src/Styles.elm b/frontend/src/Styles.elm
index 36f2a81..fbef6e1 100644
--- a/frontend/src/Styles.elm
+++ b/frontend/src/Styles.elm
@@ -60,6 +60,7 @@ furbyButton =
60 , color theme.fg 60 , color theme.fg
61 , Css.height (px 40) 61 , Css.height (px 40)
62 , border (px 0) 62 , border (px 0)
63 , borderRadius (px 2)
63 , padding2 (px 6) (px 12) 64 , padding2 (px 6) (px 12)
64 , backgroundColor theme.primary 65 , backgroundColor theme.primary
65 , hover 66 , hover
@@ -102,3 +103,23 @@ loginInputField =
102bigHeading : Style 103bigHeading : Style
103bigHeading = 104bigHeading =
104 fontSize (px 24) 105 fontSize (px 24)
106
107
108
109-- card styles
110
111
112cardPrimaryText =
113 fontSize (px 18)
114
115
116cardSecondaryText =
117 Css.batch [ color theme.fgLight, fontSize (px 12) ]
118
119
120cardSupportingText =
121 fontSize (px 16)
122
123
124money =
125 before [ Css.property "content" "\"₹ \"" ]