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 99fe63569d
commit ccca0580f7
2 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

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