Skip to content

Commit

Permalink
fix wrapping of team name on scorecard
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Woodall committed Mar 26, 2013
1 parent 7e27841 commit f000b64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/base/leagues.css.less
Expand Up @@ -96,7 +96,7 @@
}

.name, .score {
font-size: 24px;
font-size: 18px;
font-weight: bold;
line-height: 50px;
}
Expand Down
2 changes: 1 addition & 1 deletion app/views/scoreboard/_team.html.haml
@@ -1,5 +1,5 @@
%tr{ :style => "background-color: #{team.primary_color}; border-top: 2px solid #FFF; margin-top: 2px;"}
%td.logo
= image_tag team.logo.thumb.url if team.logo?
%td.name{ :style => "color: #{team.secondary_color}"}= team.name
%td.name{ :style => "color: #{team.secondary_color}", :nowrap => 'nowrap'}= team.name
%td.score{ :style => "color: #{team.secondary_color}"}= score

0 comments on commit f000b64

Please sign in to comment.