@coko/client
Version:
Client side common code for coko apps
20 lines (18 loc) • 691 B
JavaScript
import { createGlobalStyle as e } from "styled-components";
import { Fragment as t, jsx as n, jsxs as r } from "react/jsx-runtime";
import { Normalize as i } from "styled-normalize";
//#region src/components/GlobalStyle.tsx
var a = e`
body {
background-color: ${(e) => e.theme.colorBackground};
color: ${(e) => e.theme.colorText};
font-family: ${(e) => e.theme.fontInterface}, sans-serif;
font-size: ${(e) => e.theme.fontSizeBase};
line-height: ${(e) => e.theme.lineHeightBase};
* {
box-sizing: border-box;
}
}
`, o = () => /* @__PURE__ */ r(t, { children: [/* @__PURE__ */ n(i, {}), /* @__PURE__ */ n(a, {})] });
//#endregion
export { o as default };