2019-08-10 09:55:59 -04:00
|
|
|
@import "../../colors";
|
|
|
|
|
|
|
|
input[type="checkbox"].formik-checkbox {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin-right: .625rem;
|
|
|
|
border: 1px solid $active-dark-gray;
|
|
|
|
border-radius: 3px;
|
|
|
|
width: 1.25rem;
|
|
|
|
height: 1.25rem;
|
|
|
|
appearance: none;
|
|
|
|
|
2019-08-16 17:13:24 -04:00
|
|
|
&:focus {
|
|
|
|
transition: all .25s ease;
|
2019-08-10 09:55:59 -04:00
|
|
|
outline: none;
|
|
|
|
box-shadow: 0 0 0 .25rem $ui-blue-25percent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:checked {
|
|
|
|
background-color: $ui-blue;
|
|
|
|
text-align: center;
|
|
|
|
text-indent: .125rem;
|
|
|
|
line-height: 1.25rem;
|
|
|
|
font-size: .75rem;
|
2019-08-19 11:53:20 -04:00
|
|
|
background-image: url("/svgs/forms/checkmark.svg");
|
|
|
|
background-position: center;
|
2019-08-10 09:55:59 -04:00
|
|
|
}
|
|
|
|
}
|
2019-09-26 14:46:42 -04:00
|
|
|
|
|
|
|
.formik-checkbox-label {
|
|
|
|
padding-top: .0625rem;
|
|
|
|
display: block;
|
|
|
|
}
|