aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp/styles.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/delayApp/styles.js')
-rw-r--r--src/features/delayApp/styles.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/features/delayApp/styles.js b/src/features/delayApp/styles.js
new file mode 100644
index 000000000..5c214cfdf
--- /dev/null
+++ b/src/features/delayApp/styles.js
@@ -0,0 +1,23 @@
1export default theme => ({
2 container: {
3 background: theme.colorBackground,
4 position: 'absolute',
5 top: 0,
6 width: '100%',
7 display: 'flex',
8 'flex-direction': 'column',
9 'align-items': 'center',
10 'justify-content': 'center',
11 'z-index': 150,
12 },
13 headline: {
14 color: theme.colorHeadline,
15 margin: [25, 0, 40],
16 'max-width': 500,
17 'text-align': 'center',
18 'line-height': '1.3em',
19 },
20 button: {
21 margin: [40, 0, 20],
22 },
23});