We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634a681 commit 961d472Copy full SHA for 961d472
src/components/alert.tsx
@@ -4,7 +4,7 @@ type Props = {
4
children?: any;
5
deepLink?: string;
6
dismiss?: boolean;
7
- level?: string;
+ level?: 'info' | 'warning' | 'danger' | 'success' | '';
8
title?: string;
9
};
10
src/styles/_includes/bootstrap-overrides.scss
@@ -46,8 +46,10 @@ $cyan: $jewel1;
46
$primary: $purple;
47
48
$theme-colors: (
49
- 'info': $brandLink,
50
- 'warning': $brandPink,
+ 'info': $blue,
+ 'warning': $orange,
51
+ 'danger': $red,
52
+ 'success': $green,
53
);
54
55
$code-color: $codeColor;
0 commit comments