feat: minlength validation
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -11,3 +11,15 @@ th, td {
|
||||
table, th, td {
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 2px solid currentcolor;
|
||||
}
|
||||
|
||||
input:invalid {
|
||||
border: 2px dashed red;
|
||||
}
|
||||
|
||||
input:invalid:focus {
|
||||
background-image: linear-gradient(magenta, pink);
|
||||
}
|
||||
|
@ -11,3 +11,19 @@ th, td {
|
||||
table, th, td {
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 2px solid currentcolor;
|
||||
}
|
||||
|
||||
input:invalid {
|
||||
border: 2px dashed red;
|
||||
}
|
||||
|
||||
input:invalid:focus {
|
||||
background-image: linear-gradient(magenta, pink);
|
||||
}
|
||||
|
||||
.error {
|
||||
color: red;
|
||||
}
|
||||
|
Reference in New Issue
Block a user