From 6eeae630ef441a871d06b888b6a21178e36e0db7 Mon Sep 17 00:00:00 2001 From: Priscila Oliveira Date: Fri, 3 Jan 2020 00:18:42 +0100 Subject: [PATCH] fix: removed unused style file (#406) --- src/App/styles.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/App/styles.ts diff --git a/src/App/styles.ts b/src/App/styles.ts deleted file mode 100644 index b285b03..0000000 --- a/src/App/styles.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { css } from '@emotion/core'; - -import { theme } from '../design-tokens/theme'; - -export const alertError = css({ - backgroundColor: `${theme.palette.red} !important`, - minWidth: 'inherit !important', -}); - -export const alertErrorMsg = css({ - display: 'flex', - alignItems: 'center', -}); - -export const alertIcon = css({ - opacity: 0.9, - marginRight: '8px', -});