From 7b18be876b77732d1ce05385b4d196e39a1b80b7 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 17 Jul 2025 11:55:26 -0400 Subject: [PATCH] fix media rounding; closes #1107 (#1193) --- packages/webawesome/docs/docs/resources/changelog.md | 1 + packages/webawesome/src/components/card/card.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/webawesome/docs/docs/resources/changelog.md b/packages/webawesome/docs/docs/resources/changelog.md index 0bc6c254a..2afa8a106 100644 --- a/packages/webawesome/docs/docs/resources/changelog.md +++ b/packages/webawesome/docs/docs/resources/changelog.md @@ -22,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] - Fixed a bug in `` that prevented pill buttons from rendering corners properly [issue:1165] - Fixed a bug in `` that caused some vertical groups to appear horizontal [issue:1152] 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; } }