Separate Song component from queue styling to use for general case
This commit is contained in:
22
style/song.scss
Normal file
22
style/song.scss
Normal file
@ -0,0 +1,22 @@
|
||||
.song {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
max-width: 50px; /* Adjust maximum width for images */
|
||||
margin-right: 10px; /* Add spacing between image and text */
|
||||
border-radius: 5px; /* Add border radius to image */
|
||||
}
|
||||
|
||||
.song-info {
|
||||
h3 {
|
||||
margin: 0;
|
||||
color: #fff; /* Adjust text color for song */
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
color: #aaa; /* Adjust text color for artist */
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user