From 043f2988df31066b30bfbb73470b7295b36477b4 Mon Sep 17 00:00:00 2001 From: Sergei Cherniaev Date: Fri, 15 Mar 2024 22:09:55 -0500 Subject: [PATCH] fix: remove horizontal scroll for the field --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index ecbc713..b63646a 100755 --- a/src/App.js +++ b/src/App.js @@ -6,7 +6,7 @@ import styled from "styled-components"; import Field from "./utility/Field"; const Game = styled.div` - max-width: ${props => props.fieldWidth * 42 + "px"}; + max-width: ${props => props.fieldWidth * 42 + 2 + "px"}; margin: 0 auto; `;