Fix playlist page sizing and layout (#2484)

This commit is contained in:
absidue 2022-08-16 13:44:57 +02:00 committed by GitHub
parent e0e7b5053a
commit 83d54bec39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -5,17 +5,18 @@
.playlistInfo { .playlistInfo {
background-color: var(--card-bg-color); background-color: var(--card-bg-color);
box-sizing: border-box; box-sizing: border-box;
height: calc(100vh - 96px); height: calc(100vh - 132px);
margin-right: 1em; margin-right: 1em;
overflow-y: auto; overflow-y: auto;
padding: 10px; padding: 10px;
position: sticky; position: sticky;
top: 78px; top: 96px;
width: 30%; width: 30%;
} }
.playlistItems { .playlistItems {
display: grid; display: flex;
flex-direction: column;
grid-gap: 10px; grid-gap: 10px;
margin: 0; margin: 0;
padding: 10px; padding: 10px;