/** * A collection of popular layouts and patterns made with CSS (https://csslayout.io) * (c) 2019 - 2021 Nguyen Huu Phuoc */ import * as React from 'react'; import { Helmet } from 'react-helmet'; import Pattern from '../../constants/Pattern'; import DetailsLayout from '../../layouts/DetailsLayout'; import Block from '../../placeholders/Block'; import BrowserFrame from '../../placeholders/BrowserFrame'; const Details: React.FC<{}> = () => { return (
Draft
...
`} css={` .container { /* Used to position the watermark */ position: relative; } .container__wrapper { /* Center the content */ align-items: center; display: flex; justify-content: center; /* Absolute position */ left: 0px; position: absolute; top: 0px; /* Take full size */ height: 100%; width: 100%; } .container__watermark { /* Text color */ color: rgba(0, 0, 0, 0.2); /* Text styles */ font-size: 3rem; font-weight: bold; text-transform: uppercase; /* Rotate the text */ transform: rotate(-45deg); /* Disable the selection */ user-select: none; } `} >
Draft
); }; export default Details;