UNPKG

@dabapps/roe

Version:

A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.

28 lines (23 loc) 565 B
#### Example ```js import { ContentBox, ContentBoxFooter, SpacedGroup, Button, } from '@dabapps/roe'; <ContentBox> <p>Content</p> <ContentBoxFooter> <SpacedGroup block className="margin-vertical-large"> <Button>Cancel</Button> <Button className="primary">Done</Button> </SpacedGroup> </ContentBoxFooter> </ContentBox>; ``` #### Less variables ```css @content-box-footer-background: @content-box-header-background; // @primary-lightest; @content-box-footer-border: @content-box-header-border; // 1px solid @primary-lighter; ```