1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-16 02:54:20 +02:00

Add feature list

This commit is contained in:
Phuoc Nguyen
2019-11-21 22:07:17 +07:00
parent a2ebc07e9e
commit 82e5f47999
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
import React from 'react';
import Circle from '../../placeholders/Circle';
import Frame from '../../placeholders/Frame';
import Line from '../../placeholders/Line';
import Rectangle from '../../placeholders/Rectangle';
const Cover = () => {
return (
<Frame>
<div className="flex flex-column justify-center h-100 pa2 w-100">
<div className="flex w-100 mb2">
<div className="mh1"><Circle size={32} /></div>
<div style={{ flex: 1 }}>
<div className="w-100 mb2"><Rectangle height={4} /></div>
<div className="w-100 mb1"><Line /></div>
<div className="w-100 mb1"><Line /></div>
<div className="w-80"><Line /></div>
</div>
</div>
<div className="flex w-100 flex-row-reverse">
<div className="mh1"><Circle size={32} /></div>
<div style={{ flex: 1 }}>
<div className="w-100 mb2"><Rectangle height={4} /></div>
<div className="w-100 mb1"><Line /></div>
<div className="w-100 mb1"><Line /></div>
<div className="w-80"><Line /></div>
</div>
</div>
</div>
</Frame>
);
};
export default Cover;

View File

@@ -0,0 +1,75 @@
import React from 'react';
import DetailsLayout from '../../DetailsLayout';
import Block from '../../placeholders/Block';
import BrowserFrame from '../../placeholders/BrowserFrame';
import Circle from '../../placeholders/Circle';
import Rectangle from '../../placeholders/Rectangle';
import SampleCode from '../../SampleCode';
const Details = () => {
return (
<DetailsLayout title="Feature list">
<BrowserFrame
content={
<div className="flex h-100 items-center justify-center">
<div className="w-60">
<div className="flex flex-row mb4">
<div className="mh3"><Circle size={128} /></div>
<div style={{ flex: 1 }}>
<div className="mb4"><Rectangle height={8} /></div>
<Block numberOfBlocks={10} />
</div>
</div>
<div className="flex flex-row flex-row-reverse mb4">
<div className="mh3"><Circle size={128} /></div>
<div style={{ flex: 1 }}>
<div className="mb4"><Rectangle height={8} /></div>
<Block numberOfBlocks={15} />
</div>
</div>
</div>
</div>
}
source={
<SampleCode
lang="html"
code={`
<!-- Feature item -->
<div style="
display: flex;
/* OPTIONAL: Reverse the order of image and content */
flex-direction: row-reverse;
/* OPTIONAL: Spacing between items */
margin: 16px 0;
">
<!-- Image -->
<div style="
width: 128px;
">
...
</div>
<!-- Right side -->
<div style="
/* Take the remaining width */
flex: 1;
">
...
</div>
</div>
<!-- Repeated items -->
...
`}
/>
}
/>
</DetailsLayout>
);
};
export default Details;