aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-10-18 09:25:33 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-10-18 09:25:33 +0200
commit3f150f9863672e61cdbe1310c70d22e12042cc73 (patch)
tree977b7fa5dd008b4a7b7217994ec8f9753e5d1b40
parentmake plan selection scrollable (diff)
downloadferdium-app-3f150f9863672e61cdbe1310c70d22e12042cc73.tar.gz
ferdium-app-3f150f9863672e61cdbe1310c70d22e12042cc73.tar.zst
ferdium-app-3f150f9863672e61cdbe1310c70d22e12042cc73.zip
apply diet
-rw-r--r--src/features/planSelection/components/PlanItem.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/features/planSelection/components/PlanItem.js b/src/features/planSelection/components/PlanItem.js
index ea04c8448..ec061377b 100644
--- a/src/features/planSelection/components/PlanItem.js
+++ b/src/features/planSelection/components/PlanItem.js
@@ -38,7 +38,7 @@ const styles = theme => ({
38 38
39 '& h2': { 39 '& h2': {
40 textAlign: 'center', 40 textAlign: 'center',
41 marginBottom: 20, 41 marginBottom: 10,
42 fontSize: 30, 42 fontSize: 30,
43 color: theme.styleTypes.primary.contrast, 43 color: theme.styleTypes.primary.contrast,
44 }, 44 },
@@ -48,6 +48,7 @@ const styles = theme => ({
48 }, 48 },
49 priceWrapper: { 49 priceWrapper: {
50 height: 50, 50 height: 50,
51 marginBottom: 0,
51 }, 52 },
52 price: { 53 price: {
53 fontSize: 50, 54 fontSize: 50,
@@ -69,7 +70,7 @@ const styles = theme => ({
69 width: 40, 70 width: 40,
70 border: 0, 71 border: 0,
71 borderTop: [1, 'solid', theme.styleTypes.primary.contrast], 72 borderTop: [1, 'solid', theme.styleTypes.primary.contrast],
72 margin: [30, 'auto'], 73 margin: [15, 'auto', 20],
73 }, 74 },
74 header: { 75 header: {
75 padding: 20, 76 padding: 20,
@@ -78,7 +79,7 @@ const styles = theme => ({
78 position: 'relative', 79 position: 'relative',
79 }, 80 },
80 content: { 81 content: {
81 padding: 20, 82 padding: [10, 20, 20],
82 background: '#EFEFEF', 83 background: '#EFEFEF',
83 }, 84 },
84 simpleCTA: { 85 simpleCTA: {