Commit 866ecec6 authored by 杨奕's avatar 杨奕 Committed by GitHub

Merge pull request #471 from sunabozu/patch-1

alert.css should use variables for colours instead of hardcoded values
parents baf3d192 cc12fe31
......@@ -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