feat: added javascript error validation

This commit is contained in:
Smigz 2023-11-07 10:33:06 -05:00
parent 81be0a6509
commit bcf0be5888
3 changed files with 40 additions and 8 deletions

View file

@ -2,6 +2,7 @@
--main-bg: #C4DFDF;
--light-bg: #F8F6F4;
--text-color: rgb(22, 72, 99);
--error-color: #EF6262;
}
@ -74,6 +75,14 @@
margin-bottom: 5px;
}
.error {
color: var(--error-color);
font-size: 0.85rem;
margin-left: 5px;
}
@media only screen and (min-width: 700px) {
.container {
flex-direction: row;
@ -147,3 +156,7 @@ body {
font-size: 16px;
color: var(--text-color);
}
button {
cursor: pointer;
}