diff --git a/build/vnu-jar.mjs b/build/vnu-jar.mjs index 726a154cb2..505a1d6a80 100644 --- a/build/vnu-jar.mjs +++ b/build/vnu-jar.mjs @@ -44,7 +44,10 @@ execFile('java', ['-version'], (error, stdout, stderr) => { 'Attribute “switch” not allowed on element “input” at this point.', 'Element “style” not allowed as child of element “div” in this context.*', // Allow empty option in select - 'Element “option” without attribute “label” must not be empty.' + 'Element “option” without attribute “label” must not be empty.', + // Allow inputmode + '.*The “inputmode” attribute is not supported in all browsers.*' + // !!! WARNING !!! check both quotes you are using when updating this list // End mod ].join('|') diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 88322886ab..f5f7f496eb 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -624,10 +624,10 @@ textarea { // 2. Reset the default outline behavior of fieldsets so they don't affect page layout. fieldset { - min-width: 0; // 1 + min-inline-size: 0; // 1 padding: 0; // 2 margin: 0; // 2 - border: 0; // 2 + border: unset; // 2 } // 1. By using `float: left`, the legend will behave like a block element. @@ -636,8 +636,7 @@ fieldset { // See https://github.com/twbs/bootstrap/issues/29712 legend { - float: left; // 1 - width: 100%; + float: left; padding: 0; margin-bottom: $legend-margin-bottom; font-weight: $legend-font-weight; diff --git a/site/src/components/shortcodes/ComponentCard.astro b/site/src/components/shortcodes/ComponentCard.astro index c99957176b..773c7f6be9 100644 --- a/site/src/components/shortcodes/ComponentCard.astro +++ b/site/src/components/shortcodes/ComponentCard.astro @@ -17,7 +17,7 @@ interface Props { const { component, idPrefix } = Astro.props --- -