@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).
39 lines (35 loc) • 980 B
JSX
"use client";
import * as Page from "../../components/layouts/page/Page.styled";
import { styled } from "styled-components";
const Style = styled.section `
position: relative;
display: flex;
flex-direction: column;
width: 100vw;
height: 100%;
overflow: hidden;
z-index: 1;
${({ $direction }) => $direction === "left" && `direction: rtl;`}
& > section {
position: relative;
background: rgba(var(--black-abs), var(--o045));
display: flex;
width: 100%;
height: 100%;
overflow: hidden;
& > main {
position: relative;
width: 100%;
height: 100%;
z-index: 3;
overflow: hidden;
${Page.default} {
position: relative;
width: 100%;
height: 100%;
}
}
}
`;
export default Style;
//# sourceMappingURL=Frame.styled.jsx.map