48 lines
725 B
SCSS
48 lines
725 B
SCSS
fieldset {
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
width: 100%;
|
|
label {
|
|
~.checksley-error-list {
|
|
top: 31px;
|
|
}
|
|
}
|
|
}
|
|
|
|
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 {
|
|
@extend %small;
|
|
margin-bottom: 0;
|
|
padding: 0 .5rem;
|
|
position: absolute;
|
|
right: 2rem;
|
|
top: 10px;
|
|
li {
|
|
padding: .2rem;
|
|
}
|
|
}
|