Skip to content

Commit

Permalink
Make sure embed has a background color
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Dec 8, 2024
1 parent 600e716 commit a738767
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.0.8: 2024-12-08

* Make sure embed has a background color

### 2.0.7: 2024-12-07

* Fix incorrect class issue: Regression with the top bar being fully transparent
Expand Down
2 changes: 1 addition & 1 deletion layout-multiple-columns.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.0.7 */
2.0.8 */

/* CSS variables */
:root {
Expand Down
5 changes: 3 additions & 2 deletions layout-single-column.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.0.7 */
2.0.8 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -4282,9 +4282,10 @@ body .compose-form .compose-form__uploads {

/* Embeds outside Mastodon */
body.embed {
/* stylelint-disable-next-line */
background-color: var(--color-bg) !important;
/* Make sure with !important */
/* stylelint-disable-next-line */
background: transparent !important;
border: 0;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-bird-ui",
"version": "2.0.7",
"version": "2.0.8",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit a738767

Please sign in to comment.