- POST requests for feeds
- Export subscriptions
- Replaced xml-js
- Thumbnails for songs in local playlist
- Closes #107
This commit is contained in:
Shiny Nematoda 2023-02-09 11:37:06 +00:00
parent 171ef845d3
commit 7adf7e569f
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
14 changed files with 502 additions and 545 deletions

View file

@ -116,7 +116,9 @@ onMounted(get);
}
.btn-grid {
display: grid;
grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
align-self: center;
max-width: 100%;
grid-template-columns: repeat(auto-fill, 8rem);
grid-auto-rows: 1fr;
gap: 0.125rem;
padding: 1rem 0;
@ -143,20 +145,4 @@ onMounted(get);
text-align: center;
text-transform: capitalize;
}
@media (min-width: 760px) {
.btn-grid {
grid-template-columns: calc(100% / 4) calc(100% / 4) calc(100% / 4) calc(
100% / 4
);
}
}
@media (min-width: 1024px) {
.btn-grid {
grid-template-columns:
calc(100% / 5) calc(100% / 5) calc(100% / 5) calc(100% / 5)
calc(100% / 5);
}
}
</style>