aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/util/ErrorBoundary/styles.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/util/ErrorBoundary/styles.tsx')
-rw-r--r--src/components/util/ErrorBoundary/styles.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/util/ErrorBoundary/styles.tsx b/src/components/util/ErrorBoundary/styles.tsx
new file mode 100644
index 000000000..0960546ff
--- /dev/null
+++ b/src/components/util/ErrorBoundary/styles.tsx
@@ -0,0 +1,13 @@
1export default theme => ({
2 component: {
3 display: 'flex',
4 width: '100%',
5 alignItems: 'center',
6 justifyContent: 'center',
7 flexDirection: 'column',
8 },
9 title: {
10 fontSize: 20,
11 color: theme.colorText,
12 },
13});