Yassine Doghri 94cea0ce91 feat: set min PHP version to 8.4
update CI4 to 4.6.0 + use codeigniter-vite and vite-plugin-codeigniter to load assets
2025-03-14 12:54:51 +00:00

34 lines
806 B
CSS

@layer components {
.form-radio-btn {
@apply absolute right-4 top-4 border-contrast border-3 text-accent-base transition;
&:focus {
@apply ring-accent;
}
&:checked {
& + label {
@apply text-accent-hover bg-base border-accent-base shadow-none;
}
& + label .form-radio-btn-description {
@apply text-accent-base;
}
}
& + label {
@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;
}
& + label .form-radio-btn-description {
@apply font-normal text-xs text-skin-muted text-balance;
}
}
}