Skip to content

Commit

Permalink
fix(match2): GameComment overflowing matchsummary box (#5203)
Browse files Browse the repository at this point in the history
* fix(match2): GameCOmment overflowing matchsummary box

* linter: line length
  • Loading branch information
hjpalpha authored Dec 16, 2024
1 parent f8513ec commit 92ec603
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ function MatchSummaryGameComment:render()
end
return HtmlWidgets.Fragment{children = {
MatchSummaryBreak{},
HtmlWidgets.Div{css = {margin = 'auto'}, classes = self.props.classes, children = self.props.children},
HtmlWidgets.Div{
css = {margin = 'auto', ['max-width'] = '100%'},
classes = self.props.classes,
children = self.props.children
},
}}
end

Expand Down

0 comments on commit 92ec603

Please sign in to comment.