accessible-astro-components
Version:
A comprehensive set of accessible, easy-to-use UI components for Astro websites, built with WCAG compliance and inclusive design principles.
24 lines (20 loc) • 347 B
CSS
/**
* Form System
*
* This file defines the form system used across components,
* providing consistent values for component styling and form across the system.
*/
input,
button,
select,
textarea {
font: inherit;
}
input,
select,
textarea {
field-sizing: content;
}
input:not([type='checkbox'], [type='radio']) {
inline-size: 100%;
}