add global styles
This commit is contained in:
parent
05c84be34a
commit
114503a5b6
|
@ -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;
|
||||||
|
}
|
|
@ -1,6 +1,8 @@
|
||||||
import App from "./App.svelte";
|
import App from "./App.svelte";
|
||||||
import '@fontsource-variable/red-hat-display';
|
import '@fontsource-variable/red-hat-display';
|
||||||
|
|
||||||
|
import './lib/global_styles.scss';
|
||||||
|
|
||||||
const app = new App({
|
const app = new App({
|
||||||
target: document.getElementById("app"),
|
target: document.getElementById("app"),
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue