mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-05-10 04:05:22 -04:00
feat: added javascript error validation
This commit is contained in:
parent
81be0a6509
commit
bcf0be5888
3 changed files with 40 additions and 8 deletions
|
@ -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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue