@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).
29 lines (27 loc) • 833 B
JSX
"use client";
import { styled } from "styled-components";
import * as InnerContent from "../../../components/layouts/contents/inner/InnerContent.styled";
import { Root } from "../../../lib/style";
const Style = styled.section `
width: -webkit-fill-available;
height: -webkit-fill-available;
overflow: hidden auto;
scroll-snap-type: y mandatory;
-webkit-overflow-scrolling: touch;
${InnerContent.default} {
padding: 3em;
gap: 2em;
height: max-content;
}
@media all and (max-width: ${Root.Device.Mobile}px) {
& {
${InnerContent.default} {
padding: 2em;
gap: 1em;
height: max-content;
}
}
}
`;
export default Style;
//# sourceMappingURL=Notification.styled.jsx.map