PadApp/index.js

25 lines
500 B
JavaScript
Raw Normal View History

2022-12-07 21:59:01 +01:00
import { Stear, SWindow } from "./stear/main.js";
import {applyScrollBarCss1} from "./stear/extra/Style/scrollBar1.js"
import start from "./pages/start.jsx";
var stear = new Stear(document.querySelector("#stear"));
stear.style({
backgroundColor: "#dde",
fontFamily: "Helvetica Neue",
fontWeight: "lighter",
fontSize: "0.9em",
color: "#2a2a2a",
});
applyScrollBarCss1();
stear.call(start, {});
window.stear = stear;
Stear.addLanguageFile({
}, "de");
Stear.lang = "de";