diff --git a/src/ui/components/BoxScore.football.tsx b/src/ui/components/BoxScore.football.tsx index 2a4f88806b..d4d019bc3f 100644 --- a/src/ui/components/BoxScore.football.tsx +++ b/src/ui/components/BoxScore.football.tsx @@ -408,9 +408,20 @@ const ScoringSummary = memo( const NUM_SECTIONS = 12; const DEFAULT_HEIGHT = 200; -const FieldBackground = ({ t, t2 }: { t: Team; t2: Team }) => { +const FieldBackground = ({ t, t2, hT }: { t: Team; t2: Team; hT: string }) => { + const styles: CSSProperties = { + height: "100%", + width: "100%", + backgroundImage: "url(" + hT + ")", + backgroundRepeat: "no-repeat", + backgroundPosition: "center", + backgroundSize: `${(1 / 12) * 100}%`, + tabSize: 0, + position: "absolute", + }; return (