diff --git a/packages/grafana-ui/src/components/Alert/Alert.tsx b/packages/grafana-ui/src/components/Alert/Alert.tsx index 3ea0f8e4266..2789879c8f2 100644 --- a/packages/grafana-ui/src/components/Alert/Alert.tsx +++ b/packages/grafana-ui/src/components/Alert/Alert.tsx @@ -11,7 +11,6 @@ import { Button } from '../Button/Button'; import { Icon } from '../Icon/Icon'; import { Box } from '../Layout/Box/Box'; import { Text } from '../Text/Text'; - export type AlertVariant = 'success' | 'warning' | 'error' | 'info'; export interface Props extends HTMLAttributes { @@ -152,6 +151,8 @@ const getStyles = ( }), icon: css({ color: color.text, + position: 'relative', + top: '-1px', }), content: css({ color: theme.colors.text.primary,