moved everything out of the source directory

This commit is contained in:
Kim, Jimin 2022-02-19 17:50:34 +09:00
parent 8f13b81918
commit 294387d8d5
151 changed files with 21 additions and 60 deletions

View file

@ -0,0 +1,20 @@
import styled, { css } from "styled-components"
import theming from "../styles/theming"
import Card from "./Card"
export const mainContentCSS = css`
margin-top: 1rem;
width: 50%;
@media screen and (max-width: ${theming.size.screen_size1}) {
width: auto;
margin: 1rem;
}
`
const MainContent = styled(Card)`
${mainContentCSS}
`
export default MainContent