diff --git a/packages/webawesome/docs/docs/resources/changelog.md b/packages/webawesome/docs/docs/resources/changelog.md
index 5a59b9a98..2a2606ef0 100644
--- a/packages/webawesome/docs/docs/resources/changelog.md
+++ b/packages/webawesome/docs/docs/resources/changelog.md
@@ -11,6 +11,7 @@ Components with the Experimental badge sh
## Next
### New Features {data-no-outline}
+
- Added `--track-height` custom property to `` [pr:1154]
- Added `--pulse-color` custom property to `` [pr:1173]
@@ -21,6 +22,7 @@ Components with the Experimental badge sh
- Fixed the missing `nanoid` dependency in `package.json` [discuss:1139]
- Fixed a bug in `` that prevented the hint from showing up [discuss:1172]
- Fixed a bug in `` where setting `resize="auto"` caused the height of the textarea to double [issue:1155]
+- Fixed a bug in `` that caused slotted media to have incorrectly rounded corners [issue:1107]
## 3.0.0-beta.2
diff --git a/packages/webawesome/src/components/card/card.css b/packages/webawesome/src/components/card/card.css
index 105a3b2de..2df00d27a 100644
--- a/packages/webawesome/src/components/card/card.css
+++ b/packages/webawesome/src/components/card/card.css
@@ -63,7 +63,7 @@
&::slotted(*) {
display: block;
width: 100%;
- border-radius: 0;
+ border-radius: 0 !important;
}
}