Files
webawesome/src/styles/native/forms.css
Lea Verou 9260d35b4c Split Applied CSS out to make it easier to manage and share w/ components
As discussed with @lindsaym-fa
Still unsure about some of these (especially about whether blockquote & details should be separate) but I figured better go ahead and split and we can fine tune later

Co-Authored-By: Lindsay M <126139086+lindsaym-fa@users.noreply.github.com>
2024-12-16 06:55:01 -05:00

21 lines
342 B
CSS

/* Fieldsets */
fieldset {
border: solid 1px var(--wa-color-surface-border);
border-radius: var(--wa-border-radius-s);
padding: var(--wa-space-m);
padding-block-end: var(--wa-space-xl);
}
legend {
padding: 0;
padding-inline: var(--wa-space-2xs);
}
/* Native form controls */
button,
input,
select,
textarea {
font: inherit;
}