@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
32 lines (28 loc) • 764 B
JSX
"use client";
import { styled } from "styled-components";
import * as InnerContent from "../../../components/layouts/contents/inner/InnerContent.styled";
const Style = styled.div `
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
& > * {
width: 100%;
}
& > ${InnerContent.default} {
align-items: center;
justify-content: center;
padding: 3em 0;
& > img {
width: ${({ $width }) => $width}em;
height: ${({ $height }) => $height}em;
}
& > * ~ * {
margin-top: 2em;
}
}
`;
export default Style;
//# sourceMappingURL=State.styled.jsx.map