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 6 additions and 1 deletions

View File

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