Remove width property from select component (#1736)

Deleted the duplicate 'width: 100%' style from the select component (already defined on line 56). Also fixed a typo in a comment in the docs CSS. You should setup Stylelint to prevent these issues :-)
This commit is contained in:
Christian Oliff
2025-11-19 00:03:29 +09:00
committed by GitHub
parent 8fb521d9ef
commit 86293cc3e1
2 changed files with 1 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ wa-page > [slot='banner'] {
} }
&.banner-wa-launch { &.banner-wa-launch {
/* custom brand colors carrried over from theme-site for the banner */ /* custom brand colors carried over from theme-site for the banner */
--wa-color-brand-95: #fef0ec; --wa-color-brand-95: #fef0ec;
--wa-color-brand-90: #fce0d8; --wa-color-brand-90: #fce0d8;
--wa-color-brand-80: #f8bcac; --wa-color-brand-80: #f8bcac;

View File

@@ -74,7 +74,6 @@
padding: 0 var(--wa-form-control-padding-inline); padding: 0 var(--wa-form-control-padding-inline);
position: relative; position: relative;
vertical-align: middle; vertical-align: middle;
width: 100%;
transition: transition:
background-color var(--wa-transition-normal), background-color var(--wa-transition-normal),
border var(--wa-transition-normal), border var(--wa-transition-normal),