fix(forms.css): checkbox alignment in labels that are contained within a details node

This commit is contained in:
Cory Dransfeldt 2025-04-23 11:03:59 -07:00
parent 6b582feef4
commit 1812e42976
No known key found for this signature in database
3 changed files with 11 additions and 6 deletions

View file

@ -46,6 +46,11 @@ label svg {
cursor: pointer;
}
detail label:has(input[type="checkbox"]) {
display: inline-flex;
gap: var(--spacing-xs);
}
summary {
font-weight: var(--font-weight-bold);
}