mirror of
https://github.com/SomboChea/ui
synced 2024-11-16 11:14:26 +07:00
ae73772a37
* refactor: added eslint-plugin-import * refactor: disable some rules for muiComponents * fix: fixed import
24 lines
449 B
TypeScript
24 lines
449 B
TypeScript
import { css } from 'emotion';
|
|
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
export const loginDialog = css({
|
|
minWidth: '300px',
|
|
});
|
|
|
|
export const loginError = css({
|
|
backgroundColor: `${colors.red} !important`,
|
|
minWidth: 'inherit !important',
|
|
marginBottom: '10px !important',
|
|
});
|
|
|
|
export const loginErrorMsg = css({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
});
|
|
|
|
export const loginIcon = css({
|
|
opacity: 0.9,
|
|
marginRight: '8px',
|
|
});
|