diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-06-02 08:24:57 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-06-02 08:24:57 -0500 |
| commit | 697ca9ab37444117a5345c4685dcfd07221887ae (patch) | |
| tree | dd6889dde2b387902afb9305e0a0667b8765a2c3 | |
| parent | 292c7587b0bf6fabdebb94e24bc24c52b0dcdecc (diff) | |
Remove global css
| -rw-r--r-- | public/global.css | 8 | ||||
| -rw-r--r-- | public/index.html | 4 |
2 files changed, 3 insertions, 9 deletions
diff --git a/public/global.css b/public/global.css deleted file mode 100644 index 7c5be0a..0000000 --- a/public/global.css +++ /dev/null @@ -1,8 +0,0 @@ -html { - box-sizing: border-box; -} - -#editor { - height: 100vh; - max-height: 100vh; -}
\ No newline at end of file diff --git a/public/index.html b/public/index.html index f7dbc53..32e4ca4 100644 --- a/public/index.html +++ b/public/index.html @@ -7,7 +7,7 @@ <title>PT Scheduler</title> <link rel='icon' type='image/png' href='./favicon.png'> - <link rel='stylesheet' href='./global.css'> + <link rel='stylesheet' href='./build/bundle.css'> <link rel="stylesheet" @@ -22,9 +22,11 @@ href="https://fonts.googleapis.com/icon?family=Material+Icons" /> + <!-- Load the Svelte output --> <script defer src='./build/bundle.js'></script> </head> <body> + <h1 class="text-3xl font-bold underline">hello</h1> </body> </html> |
