initial app
This commit is contained in:
@@ -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";
|
||||
Reference in New Issue
Block a user