@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).
23 lines (21 loc) • 557 B
JSX
'use client';
import { styled } from 'styled-components';
export const NoData = styled.div `
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
`;
const Style = styled.div `
font-size: 1em;
display: table;
border-collapse: collapse;
width: 100%;
overflow: hidden auto;
scroll-snap-type: y mandatory;
-webkit-overflow-scrolling: touch;
${({ $fix }) => $fix && 'table-layout: fixed;'}
`;
export default Style;
//# sourceMappingURL=Table.styled.jsx.map