fix padding in Chrome; closes #1197

autoload
Cory LaViska 2023-02-17 09:56:52 -05:00
rodzic e1ec60af62
commit f79a670ca3
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -6,6 +6,10 @@ Components with the <sl-badge variant="warning" pill>Experimental</sl-badge> bad
New versions of Shoelace are released as-needed and generally occur when a critical mass of changes have accumulated. At any time, you can see what's coming in the next release by visiting [next.shoelace.style](https://next.shoelace.style).
## Next
- Fixed a bug in `<sl-select>` that caused the display label to render incorrectly in Chrome after form validation [#1197](https://github.com/shoelace-style/shoelace/discussions/1197)
## 2.1.0
- Added the `sl-focus` and `sl-blur` events to `<sl-color-picker>`

Wyświetl plik

@ -85,6 +85,8 @@ export default css`
.select__value-input {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 0;