mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
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>
21 lines
342 B
CSS
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;
|
|
}
|