vb_book/public/assets/scss/custom/plugins/_parsley.scss
2024-10-29 15:37:48 +05:30

32 lines
512 B
SCSS
Executable File

//
// parsley.scss
//
.parsley-errors-list {
margin: 0;
padding: 0;
>li {
list-style: none;
color: $danger;
margin-top: 5px;
padding-left: 20px;
position: relative;
&:before {
content: "\F0159";
font-family: "Material Design Icons";
position: absolute;
left: 2px;
top: -1px;
}
}
}
.parsley-error {
border-color: $danger;
}
.parsley-success {
border-color: $success;
}