/** * 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 BrowserFrame from '../../placeholders/BrowserFrame'; import Rectangle from '../../placeholders/Rectangle'; const Details: React.FC<{}> = () => { return (
    ...
`} css={` .container { /* Full screen overlay */ height: 100%; left: 0; position: fixed; top: 0; width: 100%; /* Center the content */ align-items: center; display: flex; justify-content: center; } .container__close { /* Shown at top right corner */ position: absolute; right: 16px; top: 16px; } `} >
); }; export default Details;