A simple flex container to wraps elements with flex container defaults.

The defaults being:

```css
display: flex;
flex-flow: row wrap;
align-content: stretch;
align-items: stretch;
justify-content: flex-start;
flex: 1 0 100%;
max-width: 100%;
```
