1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-13 15:09:42 +07:00
verdaccio-ui/src/App/styles.ts

19 lines
368 B
TypeScript
Raw Normal View History

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',
});