@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).
26 lines (24 loc) • 659 B
JSX
"use client";
import { styled } from "styled-components";
export const Row = styled.div `
font-size: ${({ $scale }) => $scale}em;
display: flex;
width: 100%;
overflow-x: scroll;
overflow-style: none;
${({ $fix }) => !$fix && "overflow-x: scroll;"}
&::-webkit-scrollbar {
display: none;
}
`;
const Style = styled.div `
font-size: ${({ $scale }) => $scale}em;
display: flex;
flex-direction: column;
${Row} + ${Row}:last-child:not(:only-child) {
max-width: max-content;
justify-content: flex-end;
}
`;
export default Style;
//# sourceMappingURL=Menu.styled.jsx.map