fix media rounding; closes #1107 (#1193)

This commit is contained in:
Cory LaViska
2025-07-17 11:55:26 -04:00
committed by GitHub
parent c9e6895ef7
commit 7b18be876b
2 changed files with 2 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ Components with the <wa-badge variant="warning">Experimental</wa-badge> badge sh
- Fixed the missing `nanoid` dependency in `package.json` [discuss:1139]
- Fixed a bug in `<wa-slider>` that prevented the hint from showing up [discuss:1172]
- Fixed a bug in `<wa-textarea>` where setting `resize="auto"` caused the height of the textarea to double [issue:1155]
- Fixed a bug in `<wa-card>` that caused slotted media to have incorrectly rounded corners [issue:1107]
- Fixed a bug in `<wa-button-group>` that prevented pill buttons from rendering corners properly [issue:1165]
- Fixed a bug in `<wa-button-group>` that caused some vertical groups to appear horizontal [issue:1152]

View File

@@ -63,7 +63,7 @@
&::slotted(*) {
display: block;
width: 100%;
border-radius: 0;
border-radius: 0 !important;
}
}