From 5f1c1023fface828214102dd74cffc6ab278b74b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 2 Feb 2021 17:08:20 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20a=20few=20css=20things?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.module.css | 1 - src/components/SelectSkin.js | 4 ++-- src/index.css | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/App.module.css b/src/App.module.css index 4e497c1..bd6e564 100644 --- a/src/App.module.css +++ b/src/App.module.css @@ -1,5 +1,4 @@ .app { padding: 4px; - min-width: calc(100vw - 8px); min-height: calc(100vh - 8px); } \ No newline at end of file diff --git a/src/components/SelectSkin.js b/src/components/SelectSkin.js index 959d39f..fc1ada1 100644 --- a/src/components/SelectSkin.js +++ b/src/components/SelectSkin.js @@ -6,8 +6,8 @@ export default function SelectSkin({skin, setSkin}) { return ( ); diff --git a/src/index.css b/src/index.css index 0431c09..fa3b54f 100644 --- a/src/index.css +++ b/src/index.css @@ -3,6 +3,6 @@ body { } #root { - min-width: 100vw; + max-width: 100vw; min-height: 100vh; }