mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
52 lines
978 B
Plaintext
52 lines
978 B
Plaintext
.music-releases-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
overflow-x: visible;
|
|
|
|
.music-releases-list-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.music-releases-list-actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
gap: 10px;
|
|
|
|
align-self: center;
|
|
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.music-releases-list-items {
|
|
display: grid;
|
|
|
|
grid-gap: 20px;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
min-width: 372px !important;
|
|
|
|
@media (min-width: 2000px) {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
@media (min-width: 2300px) {
|
|
grid-template-columns: repeat(5, 1fr);
|
|
}
|
|
|
|
.playlistItem {
|
|
justify-self: center;
|
|
}
|
|
}
|
|
} |