Skip to content

Commit

Permalink
Fix border-radius for bubble-media-player
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBearPresident committed Dec 10, 2024
1 parent c759a3b commit 8eb62dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cards/media-player/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default `
height: 50px;
background-color: var(--bubble-media-player-main-background-color, var(--bubble-main-background-color, var(--background-color-2, var(--secondary-background-color))));
touch-action: pan-y;
border-radius: var(--bubble-media-player-border-radius, var(--bubble-border-radius, 32px));
border-radius: inherit;
}
.bubble-media-player {
Expand All @@ -30,6 +30,7 @@ export default `
height: 100%;
width: 100%;
transition: background-color 1.5s;
border-radius: var(--bubble-media-player-border-radius, var(--bubble-border-radius, 32px));
background-color: rgba(0,0,0,0);
}
Expand Down

0 comments on commit 8eb62dd

Please sign in to comment.