/** * 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 Circle from '../../placeholders/Circle'; import Rectangle from '../../placeholders/Rectangle'; const Details: React.FC<{}> = () => { return (
`} css={` .container { /* Content is centered horizontally */ align-items: center; display: flex; /* Size */ height: 32px; } .container__left { height: 2px; /* Colors */ background-color: rgba(0, 0, 0, .3); } .container__circle { /* Size */ height: 32px; width: 32px; /* Rounded border */ border-radius: 9999px; /* Colors */ background-color: rgba(0, 0, 0, .3); } .container__right { /* Take the remaining width */ flex: 1; height: 2px; /* Colors */ background-color: rgba(0, 0, 0, .3); } `} >
); }; export default Details;