fix: constrain progress bar width

This commit is contained in:
2026-01-19 14:41:01 +01:00
parent f3573dfffc
commit 733e35b0d2

View File

@@ -105,6 +105,14 @@ Static#progress_info {
text-style: bold; text-style: bold;
margin: 0; margin: 0;
padding: 0; padding: 0;
text-align: center;
width: 100%;
}
#progress_bar_container {
align: center middle;
width: 100%;
height: 1;
} }
ProgressBar#progress_bar { ProgressBar#progress_bar {
@@ -112,8 +120,10 @@ ProgressBar#progress_bar {
background: #10131f; background: #10131f;
border: none; border: none;
margin: 0; margin: 0;
padding: 0 1; padding: 0;
align: center middle; width: auto;
min-width: 40;
max-width: 80;
} }
ProgressBar#progress_bar > .progress-bar--track { ProgressBar#progress_bar > .progress-bar--track {