aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/error/styles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/error/styles.ts')
-rw-r--r--src/components/ui/error/styles.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/ui/error/styles.ts b/src/components/ui/error/styles.ts
new file mode 100644
index 000000000..ed993ddd5
--- /dev/null
+++ b/src/components/ui/error/styles.ts
@@ -0,0 +1,9 @@
1import { Theme } from '@meetfranz/theme';
2
3export default (theme: Theme) => ({
4 message: {
5 color: theme.brandDanger,
6 margin: '5px 0 0',
7 fontSize: theme.uiFontSize,
8 },
9});