You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
651 B
34 lines
651 B
.p-checkbox {
|
|
@apply h-4 w-4;
|
|
|
|
.p-checkbox-box {
|
|
@apply border border-solid border-gray-50 bg-white h-4 rounded w-4 transition-none;
|
|
|
|
.p-checkbox-icon {
|
|
@apply text-caption-bold text-white;
|
|
}
|
|
|
|
&.p-highlight {
|
|
@apply border-gray-90 bg-gray-50;
|
|
}
|
|
}
|
|
&:not(.p-checkbox-disabled) {
|
|
.p-checkbox-box {
|
|
&:hover {
|
|
@apply border-primary;
|
|
}
|
|
}
|
|
.p-checkbox-box.p-focus {
|
|
@apply outline-none outline-offset-0;
|
|
}
|
|
.p-checkbox-box.p-highlight {
|
|
@apply bg-support-4 hover:border-primary;
|
|
}
|
|
}
|
|
}
|
|
.p-checkbox.p-invalid {
|
|
>.p-checkbox-box {
|
|
@apply border-error;
|
|
}
|
|
}
|
|
|
|
|