@coko/client
Version:
Client side common code for coko apps
26 lines (23 loc) • 535 B
JavaScript
import { grid as e, th as t } from "../../toolkit/themeHelper.js";
import "../../toolkit/index.js";
import n from "styled-components";
import { Layout as r } from "antd";
//#region src/ui/common/Layout.tsx
var i = n(r)`
header,
footer,
main {
background-color: ${t("colorBackground")};
padding: ${e(4)};
}
header {
border-bottom: 1px solid ${t("colorBorder")};
height: unset;
line-height: unset;
}
footer {
border-top: 1px solid ${t("colorBorder")};
}
`;
//#endregion
export { i as default };