Skip to content

Commit

Permalink
fix: missing padding for favorites title
Browse files Browse the repository at this point in the history
  • Loading branch information
punxaphil committed Dec 17, 2023
1 parent c31016f commit 39a5319
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/media-browser-header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class MediaBrowserHeader extends LitElement {
hide=${this.store.config.hideBrowseMediaButton || nothing}
.store=${this.store}
.features=${[MediaPlayerEntityFeature.BROWSE_MEDIA]}
class="browse"
></sonos-ha-player>
`;
}
Expand All @@ -23,6 +22,7 @@ class MediaBrowserHeader extends LitElement {
:host {
display: flex;
justify-content: space-between;
padding: 0.5rem;
}
.title {
flex: 1;
Expand All @@ -32,9 +32,7 @@ class MediaBrowserHeader extends LitElement {
display: flex;
align-items: center;
justify-content: center;
}
.browse {
margin: 0.5rem;
padding: 0.5rem;
}
*[hide] {
display: none;
Expand Down

0 comments on commit 39a5319

Please sign in to comment.