diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2017-07-03 13:59:18 -0700 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2017-07-03 13:59:18 -0700 |
commit | 893a43d2ce7ed27f8272431d9b97feb274d67225 (patch) | |
tree | 6719366d9d73863fed0a6d65554e039937630a12 /src | |
parent | ceef717d4a121249dd715b465e83bfe94754b055 (diff) |
Implement basic footer
Diffstat (limited to 'src')
-rw-r--r-- | src/components/footer/footer.css | 6 | ||||
-rw-r--r-- | src/components/footer/footer.js | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/components/footer/footer.css b/src/components/footer/footer.css new file mode 100644 index 0000000..121a909 --- /dev/null +++ b/src/components/footer/footer.css @@ -0,0 +1,6 @@ +@import "../../globals.css"; + +.footer { + font-size: 1.3em; + composes: marginMixin; +} diff --git a/src/components/footer/footer.js b/src/components/footer/footer.js new file mode 100644 index 0000000..92d60f3 --- /dev/null +++ b/src/components/footer/footer.js @@ -0,0 +1,7 @@ +import React from 'react' + +import { footer } from './footer.css' + +const Footer = p => <div className={footer}>{p.children}</div> + +export default Footer |