Skip to content

Commit

Permalink
Fix button alignment in remote playlists
Browse files Browse the repository at this point in the history
  • Loading branch information
pkrasicki committed Dec 28, 2024
1 parent ee22d0f commit 28c5b78
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions src/renderer/components/playlist-info/playlist-info.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@
word-break: break-all;
}

.playlistOptions {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
}

.channelShareWrapper {
column-gap: 8px;
display: grid;
Expand All @@ -79,13 +86,13 @@
inset-block-end: -20px;
background-color: var(--card-bg-color);
padding-block: 5px;
}

.playlistOptions {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
.playlistOptions {
display: grid;
grid-auto-flow: column;
column-gap: 8px;
justify-content: flex-end;
}
}

.searchInputsRow {
Expand Down

0 comments on commit 28c5b78

Please sign in to comment.