initial app

This commit is contained in:
Arnie
2023-06-01 20:24:59 +02:00
parent bb19e15a40
commit 34993f7f61
64 changed files with 10002 additions and 0 deletions
@@ -0,0 +1,12 @@
import styled from "@emotion/styled";
const Content = styled("div")(({ theme }) => ({
padding: theme.spacing(0.5),
paddingLeft: theme.spacing(1),
"@media (min-width: 800px)": {
padding: theme.spacing(1),
paddingLeft: theme.spacing(2),
},
}));
export default Content;
@@ -0,0 +1 @@
export { default as Content } from "./Content";