1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

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

View File

File diff suppressed because one or more lines are too long

View File

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