0
0
Fork 0

Add styles to customize the error text

This commit is contained in:
Oliver-Akins 2020-08-18 19:01:09 -06:00
parent c9c8b01791
commit 157077c65b
2 changed files with 3 additions and 1 deletions

View file

@ -101,8 +101,8 @@ button:hover { cursor: pointer; }
background-color: var(--error-background);
border-radius: var(--corner-rounding);
border-color: var(--error);
color: var(--error-text);
border-style: solid;
color: var(--error);
margin-bottom: 15px;
border-width: 2px;
}

View file

@ -8,6 +8,8 @@
--error: #ff0000;
--error-background: #ff00005d;
--error-text: #FFFFFF;
--error-accent: var(--error);
--success: var(--accent2);
--success-background: #00aa0083;