mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 08:45:45 +00:00
25 lines
400 B
CSS
25 lines
400 B
CSS
![]() |
.form-radio-btn {
|
||
|
@apply absolute opacity-0;
|
||
|
}
|
||
|
|
||
|
.form-radio-btn:focus + label {
|
||
|
@apply shadow-outline;
|
||
|
}
|
||
|
|
||
|
.form-radio-btn + label {
|
||
|
@apply px-2 py-1 text-sm text-black bg-white border rounded cursor-pointer;
|
||
|
|
||
|
&:hover {
|
||
|
@apply bg-green-100;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.form-radio-btn:checked + label {
|
||
|
@apply text-white bg-green-500;
|
||
|
|
||
|
&::before {
|
||
|
@apply mr-2 text-green-200;
|
||
|
content: "✓";
|
||
|
}
|
||
|
}
|