Skip to content

Commit

Permalink
Make playlist selector look more selectable (cursor: pointer)
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Nov 1, 2023
1 parent 976f6c7 commit d321aec
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@

overflow-y: scroll;
}

.playlist-selector-container {
/* Make them look selectable */
cursor: pointer;
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,19 @@
/>
<div class="playlists-container">
<ft-flex-box>
<ft-playlist-selector
<div
v-for="(playlist, index) in activePlaylists"
:key="playlist._id"
:tabindex="tabindex"
:data="playlist"
:index="index"
:selected="selectedPlaylistIdList.includes(playlist._id)"
@selected="countSelected(playlist._id)"
/>
class="playlist-selector-container"
>
<ft-playlist-selector
:tabindex="tabindex"
:data="playlist"
:index="index"
:selected="selectedPlaylistIdList.includes(playlist._id)"
@selected="countSelected(playlist._id)"
/>
</div>
</ft-flex-box>
</div>
<div class="actions-container">
Expand Down

0 comments on commit d321aec

Please sign in to comment.