Skip to content

Commit c328671

Browse files
committed
fix media rounding; closes #1107
1 parent 9e9a005 commit c328671

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/webawesome/docs/docs/resources/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Components with the <wa-badge variant="warning">Experimental</wa-badge> badge sh
1111
## Next
1212

1313
### New Features {data-no-outline}
14+
1415
- Added `--track-height` custom property to `<wa-progress-bar>` [pr:1154]
1516
- Added `--pulse-color` custom property to `<wa-badge>` [pr:1173]
1617

@@ -21,6 +22,7 @@ Components with the <wa-badge variant="warning">Experimental</wa-badge> badge sh
2122
- Fixed the missing `nanoid` dependency in `package.json` [discuss:1139]
2223
- Fixed a bug in `<wa-slider>` that prevented the hint from showing up [discuss:1172]
2324
- Fixed a bug in `<wa-textarea>` where setting `resize="auto"` caused the height of the textarea to double [issue:1155]
25+
- Fixed a bug in `<wa-card>` that caused slotted media to have incorrectly rounded corners [issue:1107]
2426

2527
## 3.0.0-beta.2
2628

packages/webawesome/src/components/card/card.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
&::slotted(*) {
6464
display: block;
6565
width: 100%;
66-
border-radius: 0;
66+
border-radius: 0 !important;
6767
}
6868
}
6969

0 commit comments

Comments
 (0)