Skip to content

Commit

Permalink
Various UI tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
patfair committed Sep 30, 2022
1 parent ce9cb08 commit 9914768
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model/match.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (match *Match) IsComplete() bool {
}

func (match *Match) CapitalizedType() string {
if match.Type == "" {
if match.Type == "" || match.Type == "test" {
return ""
} else if match.Type == "elimination" {
return "Playoff"
Expand Down
3 changes: 3 additions & 0 deletions static/css/audience_display.css
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,9 @@ html {
opacity: 0;
text-align: center;
}
#bracketSvg {
width: 100%;
}
#sponsor {
position: fixed;
width: 1000px;
Expand Down
3 changes: 3 additions & 0 deletions static/css/bracket_display.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ body {
margin: auto auto;
text-align: center;
}
#bracketSvg {
width: 100%;
}
2 changes: 1 addition & 1 deletion static/css/cheesy-arena.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ td[data-plc-value="true"] {
color: #090;
}
.btn-game-sound {
width: 110px;
width: 160px;
text-align: left;
}
input[data-changed="true"], select[data-changed="true"] {
Expand Down

0 comments on commit 9914768

Please sign in to comment.