aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp/styles.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-24 20:20:31 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-24 20:20:31 +0100
commitdf4d195ec7135c76f8f5de54c3939d2e74e80d4a (patch)
tree9a669462fa769d47e7be055b2026be7b58dc14a7 /src/features/delayApp/styles.js
parentfeat(App): Lay groundwork for general themeing support (diff)
downloadferdium-app-df4d195ec7135c76f8f5de54c3939d2e74e80d4a.tar.gz
ferdium-app-df4d195ec7135c76f8f5de54c3939d2e74e80d4a.tar.zst
ferdium-app-df4d195ec7135c76f8f5de54c3939d2e74e80d4a.zip
Delay app based on featureAPI settings
Diffstat (limited to 'src/features/delayApp/styles.js')
-rw-r--r--src/features/delayApp/styles.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/features/delayApp/styles.js b/src/features/delayApp/styles.js
new file mode 100644
index 000000000..097368d9a
--- /dev/null
+++ b/src/features/delayApp/styles.js
@@ -0,0 +1,26 @@
1export default (theme) => {
2 console.log(theme);
3 return ({
4 container: {
5 background: theme.colorBackground,
6 position: 'absolute',
7 top: 0,
8 width: '100%',
9 display: 'flex',
10 'flex-direction': 'column',
11 'align-items': 'center',
12 'justify-content': 'center',
13 'z-index': 150,
14 },
15 headline: {
16 color: theme.colorHeadline,
17 margin: [25, 0, 40],
18 'max-width': 500,
19 'text-align': 'center',
20 'line-height': '1.3em',
21 },
22 button: {
23 margin: [40, 0, 20],
24 },
25 });
26};