Files
web/web_notify/static/src/scss/webclient.scss
Jairo Llopis 94462b5c72 [IMP] pre-commit run after update
Includes some manual fixes to silent ESLint warnings.
2023-01-05 16:40:06 +01:00

25 lines
608 B
SCSS

.o_notification_manager {
.o_notification {
&.o_success {
color: white;
background-color: theme-color("success");
}
&.o_danger {
color: white;
background-color: theme-color("danger");
}
&.o_warning {
color: white;
background-color: theme-color("warning");
}
&.o_info {
color: white;
background-color: theme-color("info");
}
&.o_default {
color: black;
background-color: theme-color("default");
}
}
}