Skip to content

Commit

Permalink
Fix UI build bar alignment broken on index page
Browse files Browse the repository at this point in the history
Problem: The right side of some build bars of is
misaligned when the screen is less wide than 880
pixels. This occurs because some bars have more
text than others and this text forces a minimum size.

Solution: a minimum size is set for all bars to
ensure the maximum possible text size.

https://progress.opensuse.org/issues/77929
  • Loading branch information
ilausuch committed Nov 25, 2020
1 parent 20926f3 commit 206da6f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions assets/stylesheets/dashboard.scss
Expand Up @@ -6,6 +6,9 @@ div.progress {
margin-bottom: 9px;
height: 18px;
}
#build-results .progress {
min-width: 24.5em;
}
@include media-breakpoint-down(lg) {
div.progress {
margin-top: 0px !important;
Expand Down

0 comments on commit 206da6f

Please sign in to comment.