From 8e41fdad46724f86b02411a98de6aff16a74fc25 Mon Sep 17 00:00:00 2001 From: Hydroxycarbamide Date: Thu, 11 Aug 2022 23:41:18 +0200 Subject: [PATCH] App.scss: Move public style to public css file --- index.html | 1 + public/style.css | 6 ++++++ src/Components/App/App.scss | 6 ------ 3 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 public/style.css diff --git a/index.html b/index.html index e0d1c84..d9f5a08 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ + Vite + React + TS diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..a732b5f --- /dev/null +++ b/public/style.css @@ -0,0 +1,6 @@ +html, +body, +#root { + width: 100%; + height: 100%; +} diff --git a/src/Components/App/App.scss b/src/Components/App/App.scss index 2cb61ee..e69de29 100644 --- a/src/Components/App/App.scss +++ b/src/Components/App/App.scss @@ -1,6 +0,0 @@ -html, -body, -#root { - width: 100%; - height: 100%; -} \ No newline at end of file