import backgroundArt from "@assets/images/login-background.svg"; import saleorDarkLogo from "@assets/images/logo-dark.svg"; import saleorLightLogo from "@assets/images/logo-light.svg"; import { makeStyles, useTheme } from "@saleor/macaw-ui"; import React from "react"; import SVG from "react-inlinesvg"; const useStyles = makeStyles( theme => ({ footer: { position: "absolute", bottom: theme.spacing(4) }, logo: { display: "block", height: 40, marginBottom: theme.spacing(4) }, mainPanel: { [theme.breakpoints.down("sm")]: { padding: theme.spacing(2) }, background: theme.palette.background.paper, display: "flex", flexDirection: "column", height: "100vh", justifyContent: "center", padding: theme.spacing(5, 6, 4, 6), width: "100%" }, mainPanelContent: { [theme.breakpoints.up("xs")]: { width: "100%" }, [theme.breakpoints.up("sm")]: { width: 328 }, "@media (min-width: 1440px)": { width: 380 }, margin: "auto", width: "100%" }, root: { [theme.breakpoints.up("lg")]: { gridTemplateColumns: "560px 1fr" }, "@media (min-width: 1440px)": { gridTemplateColumns: "780px 1fr" }, display: "grid", gridTemplateColumns: "1fr", gap: theme.spacing(3), height: "100vh", overflow: "hidden", position: "relative", width: "100vw" }, sidebar: { [theme.breakpoints.up("lg")]: { alignItems: "center", display: "flex" }, display: "none" }, sidebarArt: { "& svg": { width: "100%" } } }), { name: "Layout" } ); const Layout: React.FC = props => { const { children } = props; const classes = useStyles(props); const { themeType } = useTheme(); return (
{children}
©2021 Saleor Commerce. All rights reserved
); }; Layout.displayName = "Layout"; export default Layout;