mirror of
https://github.com/ragestudio/comty.git
synced 2025-07-08 08:44:15 +00:00
31 lines
550 B
Plaintext
Executable File
31 lines
550 B
Plaintext
Executable File
.profile_releases {
|
|
display: grid;
|
|
|
|
width: 100%;
|
|
|
|
grid-auto-columns: auto;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-template-rows: 1fr;
|
|
grid-column-gap: 20px;
|
|
grid-row-gap: 20px;
|
|
|
|
@media (min-width: 2000px) {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
@media (min-width: 2300px) {
|
|
grid-template-columns: repeat(5, 1fr);
|
|
}
|
|
|
|
.playlistItem {
|
|
justify-self: center;
|
|
}
|
|
|
|
&.empty {
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
} |