diff --git a/components/widget/match/summary/widget_match_summary_game_comment.lua b/components/widget/match/summary/widget_match_summary_game_comment.lua index 6f08f1a83c..447a927c2c 100644 --- a/components/widget/match/summary/widget_match_summary_game_comment.lua +++ b/components/widget/match/summary/widget_match_summary_game_comment.lua @@ -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