Skip to content

Commit c04d202

Browse files
authored
Add built-in support for jekyll-gfm-admonitions (#5312)
1 parent 01eeb08 commit c04d202

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

_sass/minimal-mistakes/_notices.scss

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,36 +74,42 @@
7474

7575
/* Default notice */
7676

77-
.notice {
77+
.notice,
78+
.markdown-alert {
7879
@include notice($light-gray);
7980
}
8081

8182
/* Primary notice */
8283

83-
.notice--primary {
84+
.notice--primary,
85+
.markdown-alert-important {
8486
@include notice($primary-color);
8587
}
8688

8789
/* Info notice */
8890

89-
.notice--info {
91+
.notice--info,
92+
.markdown-alert-note {
9093
@include notice($info-color);
9194
}
9295

9396
/* Warning notice */
9497

95-
.notice--warning {
98+
.notice--warning,
99+
.markdown-alert-warning {
96100
@include notice($warning-color);
97101
}
98102

99103
/* Success notice */
100104

101-
.notice--success {
105+
.notice--success,
106+
.markdown-alert-tip {
102107
@include notice($success-color);
103108
}
104109

105110
/* Danger notice */
106111

107-
.notice--danger {
112+
.notice--danger,
113+
.markdown-alert-caution {
108114
@include notice($danger-color);
109115
}

0 commit comments

Comments
 (0)