aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Styles.elm
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-26 17:23:44 +0000
committerAkshay <[email protected]>2020-12-26 17:23:44 +0000
commit546c3360c0d854d5c91430944e0f059a5001e986 (patch)
treea21230e564d09e8319503911ade8c9ac69c76fca /frontend/src/Styles.elm
parent2da02aac8a05ad82fdd6876c9ff6c0586efba10d (diff)
add styles to catalog and product
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" "\"₹ \"" ]