-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathnowrapdoc.js
34 lines (31 loc) · 1.73 KB
/
nowrapdoc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { DocSectionCode } from '../common/docsectioncode';
import { DocSectionText } from '../common/docsectiontext';
export function NoWrapDoc(props) {
const code = `<div class="flex flex-nowrap" style="max-width: 500px">
<div class="flex align-items-center justify-content-center bg-primary font-bold m-2 border-round" style="min-width: 150px; min-height: 100px">1</div>
<div class="flex align-items-center justify-content-center bg-primary font-bold m-2 border-round" style="min-width: 150px; min-height: 100px">2</div>
<div class="flex align-items-center justify-content-center bg-primary font-bold m-2 border-round" style="min-width: 150px; min-height: 100px">3</div>
</div>
`;
return (
<>
<DocSectionText {...props}>
<p>Flexible items do not wrap and keep their position.</p>
</DocSectionText>
<div className="card">
<div className="flex flex-nowrap" style={{ maxWidth: '500px' }}>
<div className="flex align-items-center justify-content-center bg-primary font-bold m-2 border-round" style={{ minWidth: '150px', minHeight: '100px' }}>
1
</div>
<div className="flex align-items-center justify-content-center bg-primary font-bold m-2 border-round" style={{ minWidth: '150px', minHeight: '100px' }}>
2
</div>
<div className="flex align-items-center justify-content-center bg-primary font-bold m-2 border-round" style={{ minWidth: '150px', minHeight: '100px' }}>
3
</div>
</div>
</div>
<DocSectionCode code={code} />
</>
);
}