1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-19 09:36:30 +07:00

refactor: remove sass from Login component

This commit is contained in:
Griffithtp
2019-07-04 23:40:50 +01:00
parent b6b0ecdb1e
commit 0c4ebbffa8
5 changed files with 27 additions and 27 deletions

View File

@@ -0,0 +1,22 @@
import { css } from 'emotion';
import colors from '../../utils/styles/colors';
export const loginDialog = css({
minWidth: '300px',
});
export const loginError = css`
background-color: ${colors.red} !important;
min-width: inherit !important;
margin-bottom: 10px !important;
`;
export const loginErrorMsg = css`
display: flex;
align-items: center;
`;
export const loginIcon = css({
opacity: 0.9,
marginRight: '8px',
});