41 lines
595 B
SCSS
41 lines
595 B
SCSS
fieldset {
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
width: 100%;
|
|
.icon-capslock {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="number"],
|
|
input[type="password"],
|
|
input[type="email"],
|
|
input[type="date"],
|
|
input[type="password"],
|
|
select,
|
|
textarea {
|
|
border: 1px solid;
|
|
margin: 0;
|
|
padding: 8px;
|
|
width: 100%;
|
|
&.checksley-error {
|
|
transition: border .3s linear;
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
min-height: 10rem;
|
|
resize: vertical;
|
|
}
|
|
|
|
|
|
.checksley-error-list {
|
|
margin-bottom: 0;
|
|
li {
|
|
padding: .2rem;
|
|
}
|
|
}
|