add error color
This commit is contained in:
parent
0a7d43a8ef
commit
9f57527708
|
@ -2,7 +2,8 @@
|
||||||
--black: #232D37;
|
--black: #232D37;
|
||||||
--white: #FAE2D3;
|
--white: #FAE2D3;
|
||||||
--success: #3CB57F;
|
--success: #3CB57F;
|
||||||
}
|
--fail: #F52D0A;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color: var(--black);
|
color: var(--black);
|
||||||
|
@ -13,3 +14,8 @@ a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section.error {
|
||||||
|
background-color: var(--fail);
|
||||||
|
color: var(--white)
|
||||||
|
}
|
Loading…
Reference in New Issue