0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 09:33:54 +01:00
wagtail/client/scss/components/_messages.status.scss
Thibaud Colas 5c362bf831 Refactor all stylesheets to use CSS variables
Co-authored-by: Scott Cranfill <scott@scottcranfill.com>
2022-07-20 12:08:47 +01:00

14 lines
194 B
SCSS

.status-msg {
&.success {
color: theme('colors.positive.100');
}
&.failure {
color: theme('colors.critical.200');
}
&.warning {
color: theme('colors.warning.100');
}
}