App.scss: Move public style to public css file
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Hydroxycarbamide 2022-08-11 23:41:18 +02:00
parent 61b72f6a35
commit 8e41fdad46
3 changed files with 7 additions and 6 deletions

View file

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>

6
public/style.css Normal file
View file

@ -0,0 +1,6 @@
html,
body,
#root {
width: 100%;
height: 100%;
}

View file

@ -1,6 +0,0 @@
html,
body,
#root {
width: 100%;
height: 100%;
}