Skip to content

Commit

Permalink
fix: Add border to the play card #1478
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Dagar <[email protected]>
  • Loading branch information
Siddharth-Dagar-25 committed Mar 7, 2024
1 parent ca54111 commit 2ec295d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/common/playlists/playlist.css
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@
.play-card-container {
display: flex;
flex-direction: column;
border: 1px solid #ddd;
border: 2px solid #757575;
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s ease-in-out;
Expand All @@ -838,6 +838,11 @@
padding: 12px;
}

.play-card-container:hover {
transform: scale(105%);
transition: transform 0.2s ease-in-out;
}

.border {
border: 1px solid rgb(189 183 183);
margin: 8px;
Expand Down

0 comments on commit 2ec295d

Please sign in to comment.