increase badge padding

pull/928/head
Cory LaViska 2022-09-20 10:19:35 -04:00
rodzic 03fe71353a
commit acce8eb146
2 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -8,6 +8,10 @@ New versions of Shoelace are released as-needed and generally occur when a criti
_During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛
## Next
- Increased the default padding for `<sl-badge>` so it's not as tight and scales better with font size
## 2.0.0-beta.83
This release removes the `<sl-responsive-media>` component. When this component was introduced, support for [`aspect-radio`](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio)) wasn't great. These days, [the property is supported](https://caniuse.com/mdn-css_properties_aspect-ratio) by all of Shoelace's target browsers, making a dedicated component redundant.

Wyświetl plik

@ -19,7 +19,7 @@ export default css`
border-radius: var(--sl-border-radius-small);
border: solid 1px var(--sl-color-neutral-0);
white-space: nowrap;
padding: 3px 6px;
padding: 0.35em 0.6em;
user-select: none;
cursor: inherit;
}