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

pull/471/head
troorl 2016-10-17 21:21:23 +03:00 committed by GitHub
parent baf3d192d8
commit cc12fe31de
1 changed files with 4 additions and 4 deletions

View File

@ -18,19 +18,19 @@
transition: opacity .2s; transition: opacity .2s;
@modifier success { @modifier success {
background-color: #13ce66; background-color: var(--color-success);
} }
@modifier info { @modifier info {
background-color: #50bfff; background-color: var(--color-info);
} }
@modifier warning { @modifier warning {
background-color: #f7ba2a; background-color: var(--color-warning);
} }
@modifier error { @modifier error {
background-color: #ff4949; background-color: var(--color-danger);
} }
@e content { @e content {