Fix: Prevent reduced progress bar width from being applied to small backdrop cards on phones

This commit is contained in:
lscambo13
2025-04-15 13:42:47 -07:00
parent 5a07894b0a
commit 0ad636b2f3

View File

@@ -720,6 +720,11 @@ html {
width: calc(100% - 2.5em);
}
.layout-mobile .backdropCard .itemProgressBar:not(.backgroundProgress, .playbackProgress, .transcodingProgress) {
width: 100%;
width: -webkit-fill-available;
}
.itemProgressBarForeground {
border-radius: var(--largeRadius);
background-color: var(--dimTextColor);