2019-07-05 05:40:50 +07:00
|
|
|
import { css } from 'emotion';
|
2019-10-08 03:19:18 +07:00
|
|
|
|
2019-07-05 05:40:50 +07:00
|
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
|
|
|
|
export const loginDialog = css({
|
|
|
|
minWidth: '300px',
|
|
|
|
});
|
|
|
|
|
2019-07-15 15:41:12 +07:00
|
|
|
export const loginError = css({
|
|
|
|
backgroundColor: `${colors.red} !important`,
|
|
|
|
minWidth: 'inherit !important',
|
|
|
|
marginBottom: '10px !important',
|
|
|
|
});
|
2019-07-05 05:40:50 +07:00
|
|
|
|
2019-07-15 15:41:12 +07:00
|
|
|
export const loginErrorMsg = css({
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
});
|
2019-07-05 05:40:50 +07:00
|
|
|
|
|
|
|
export const loginIcon = css({
|
|
|
|
opacity: 0.9,
|
|
|
|
marginRight: '8px',
|
|
|
|
});
|