Fixes #15619: Enforce a minimum width for progress bars

This commit is contained in:
Jeremy Stretch 2024-04-05 13:14:15 -04:00
parent 0e538a6fda
commit f9783eea80
2 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@ -9,3 +9,8 @@ html {
position: static; position: static;
} }
} }
// Enforce a minimum width for progress bars
.progress {
min-width: 80px;
}