2021-04-02 17:20:02 +00:00
|
|
|
@layer components {
|
|
|
|
.form-radio-btn {
|
2024-12-19 12:33:57 +00:00
|
|
|
@apply absolute right-4 top-4 border-contrast border-3 text-accent-base transition;
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2021-11-08 16:52:20 +00:00
|
|
|
&:focus {
|
|
|
|
@apply ring-accent;
|
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2021-11-08 16:52:20 +00:00
|
|
|
&:checked {
|
|
|
|
& + label {
|
2024-12-10 15:57:06 +00:00
|
|
|
@apply text-accent-hover bg-base border-accent-base shadow-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + label .form-radio-btn-description {
|
|
|
|
@apply text-accent-base;
|
2021-11-08 16:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-18 16:44:07 +00:00
|
|
|
|
2021-11-08 16:52:20 +00:00
|
|
|
& + label {
|
2024-12-10 15:57:06 +00:00
|
|
|
@apply h-full w-full inline-flex flex-col items-start py-3 px-4 text-sm font-bold rounded-lg cursor-pointer border-contrast bg-elevated border-3 transition-all;
|
|
|
|
|
|
|
|
box-shadow: 2px 2px 0 hsl(var(--color-border-contrast));
|
|
|
|
}
|
|
|
|
|
|
|
|
& + label span {
|
|
|
|
@apply pr-8;
|
|
|
|
}
|
2023-06-08 14:42:32 +00:00
|
|
|
|
2024-12-10 15:57:06 +00:00
|
|
|
& + label .form-radio-btn-description {
|
|
|
|
@apply font-normal text-xs text-skin-muted text-balance;
|
2021-11-08 16:52:20 +00:00
|
|
|
}
|
2020-10-02 15:38:16 +00:00
|
|
|
}
|
|
|
|
}
|