Delete remote playlists

+ minor ui changes
This commit is contained in:
Shiny Nematoda 2023-04-16 09:59:47 +00:00
parent 33fc79a736
commit fb121317ee
No known key found for this signature in database
GPG key ID: 367DA4C64DF057AD
9 changed files with 62 additions and 16 deletions

View file

@ -473,7 +473,7 @@ onMounted(async () => {
.grid {
display: grid;
width: fit-content;
gap: 2rem;
gap: 1rem;
grid-auto-rows: 10rem;
margin: 0 auto;
}
@ -553,4 +553,9 @@ input[type='file']::file-selector-button {
display: block;
text-align: center;
}
@media (min-width: 400px) {
.grid {
grid-template-columns: 1fr 1fr;
}
}
</style>