npm.io
0.0.2 • Published 6 years ago

@elemental-ui-alpha/container

Licence
Version
0.0.2
Deps
4
Size
7 kB
Vulns
0
Weekly
0

container

This is the container component.

import { Container } from '@elemental-ui-alpha/container';

Width

Provide a maximum width in pixels. The default is 760.

<Container width={300}>
  <Box background="shade" padding="small">
    300px Wide
  </Box>
</Container>

Gutter

Provide a "gutter" to the container. This is the spacing around the container to prevent the content from from running into the chrome around it.

<Container width={300} gutter="xlarge">
  <Box background="shade" padding="small">
    medium gutter
  </Box>
</Container>