Commit cc12fe31 authored by troorl's avatar troorl Committed by GitHub

alert.css should use variables for colours instead of hardcoded values

parent baf3d192
......@@ -18,19 +18,19 @@
transition: opacity .2s;
@modifier success {
background-color: #13ce66;
background-color: var(--color-success);
}
@modifier info {
background-color: #50bfff;
background-color: var(--color-info);
}
@modifier warning {
background-color: #f7ba2a;
background-color: var(--color-warning);
}
@modifier error {
background-color: #ff4949;
background-color: var(--color-danger);
}
@e content {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment