1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-22 21:53:10 +02:00

Fix spacing in details page

This commit is contained in:
Phuoc Nguyen
2019-11-23 22:13:02 +07:00
parent 10a14b1e48
commit 07d6c19b1f
37 changed files with 822 additions and 726 deletions

View File

@@ -9,32 +9,33 @@ import SampleCode from '../../SampleCode';
const Details = () => {
return (
<DetailsLayout title="Pagination">
<BrowserFrame
content={
<div className="h-100 flex flex-column items-center justify-center pa3">
<div className="b--black-30 ba br2 flex">
<div className="b--black-30 br flex items-center justify-center pa2 w4">
<Rectangle />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="flex items-center justify-center pa2 w3">
<Rectangle />
<div className="ph4 pv5">
<BrowserFrame
content={
<div className="h-100 flex flex-column items-center justify-center pa3">
<div className="b--black-30 ba br2 flex">
<div className="b--black-30 br flex items-center justify-center pa2 w4">
<Rectangle />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="b--black-30 br flex items-center justify-center pa2">
<Circle size={16} />
</div>
<div className="flex items-center justify-center pa2 w3">
<Rectangle />
</div>
</div>
</div>
</div>
}
source={
}
source={
<SampleCode
lang="html"
code={`
@@ -73,8 +74,9 @@ code={`
</div>
`}
/>
}
/>
}
/>
</div>
</DetailsLayout>
);
};