@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).
17 lines • 556 B
JSX
"use client";
import { styled } from "styled-components";
const Style = styled.div `
position: ${({ $active }) => ($active ? "relative" : "absolute")};
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
top: 0;
left: 0;
${({ $fix }) => !$fix && "overflow: hidden auto;"}
transition: 0.3s ease;
opacity: ${({ $active }) => ($active ? "1" : "0")};
pointer-events: ${({ $active }) => ($active ? "inherit" : "none")};
`;
export default Style;
//# sourceMappingURL=TabContent.styled.jsx.map