Merge pull request #1430 from jellyfin/nowplaying-hotfixes

Player hotfixes and improvements
This commit is contained in:
Joshua M. Boniface 2020-07-02 12:09:17 -04:00 committed by GitHub
commit 995b376bc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 769 additions and 523 deletions

View file

@ -30,6 +30,10 @@
align-items: flex-start;
}
.align-items-flex-end {
align-items: flex-end;
}
.justify-content-center {
justify-content: center;
}
@ -38,6 +42,10 @@
justify-content: flex-end;
}
.justify-content-space-between {
justify-content: space-between;
}
.flex-wrap-wrap {
flex-wrap: wrap;
}