aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp/styles.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-25 20:48:40 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-25 20:48:40 +0100
commitf1d7f88ff0651656ea5ed22737abecede4bac876 (patch)
treef75f14e708ab271b116a58fdedb78e68e69f488f /src/features/delayApp/styles.js
parentAdd missing delayApp commit (diff)
downloadferdium-app-f1d7f88ff0651656ea5ed22737abecede4bac876.tar.gz
ferdium-app-f1d7f88ff0651656ea5ed22737abecede4bac876.tar.zst
ferdium-app-f1d7f88ff0651656ea5ed22737abecede4bac876.zip
Fix delayApp issues
Diffstat (limited to 'src/features/delayApp/styles.js')
-rw-r--r--src/features/delayApp/styles.js49
1 files changed, 23 insertions, 26 deletions
diff --git a/src/features/delayApp/styles.js b/src/features/delayApp/styles.js
index 097368d9a..5c214cfdf 100644
--- a/src/features/delayApp/styles.js
+++ b/src/features/delayApp/styles.js
@@ -1,26 +1,23 @@
1export default (theme) => { 1export default theme => ({
2 console.log(theme); 2 container: {
3 return ({ 3 background: theme.colorBackground,
4 container: { 4 position: 'absolute',
5 background: theme.colorBackground, 5 top: 0,
6 position: 'absolute', 6 width: '100%',
7 top: 0, 7 display: 'flex',
8 width: '100%', 8 'flex-direction': 'column',
9 display: 'flex', 9 'align-items': 'center',
10 'flex-direction': 'column', 10 'justify-content': 'center',
11 'align-items': 'center', 11 'z-index': 150,
12 'justify-content': 'center', 12 },
13 'z-index': 150, 13 headline: {
14 }, 14 color: theme.colorHeadline,
15 headline: { 15 margin: [25, 0, 40],
16 color: theme.colorHeadline, 16 'max-width': 500,
17 margin: [25, 0, 40], 17 'text-align': 'center',
18 'max-width': 500, 18 'line-height': '1.3em',
19 'text-align': 'center', 19 },
20 'line-height': '1.3em', 20 button: {
21 }, 21 margin: [40, 0, 20],
22 button: { 22 },
23 margin: [40, 0, 20], 23});
24 },
25 });
26};