add global styles

This commit is contained in:
b1ek 2023-08-23 17:16:22 +10:00
parent 05c84be34a
commit 114503a5b6
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,13 @@
input[type=text] {
padding: 1px 8px;
background: #04000040;
color: #e1e1e1;
border: 1px solid #302020;
border-radius: 6px;
box-shadow: 0 0 1px 1px #04000080;
margin: 12px 6px;
outline: none;
}

View File

@ -1,6 +1,8 @@
import App from "./App.svelte";
import '@fontsource-variable/red-hat-display';
import './lib/global_styles.scss';
const app = new App({
target: document.getElementById("app"),
});