File size: 233 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
.genres {
display: flex;
gap: 5px;
.genre {
background-color: var(--pink);
padding: 3px 5px;
font-size: 12px;
border-radius: 4px;
color: white;
white-space: nowrap;
}
}
|