diff --git a/src/components/03_organism/PageFooter/PageFooter.jsx b/src/components/03_organism/PageFooter/PageFooter.jsx index e48e4e2..0dfa24b 100644 --- a/src/components/03_organism/PageFooter/PageFooter.jsx +++ b/src/components/03_organism/PageFooter/PageFooter.jsx @@ -1,40 +1,76 @@ import React from 'react'; +import { Link } from 'react-router-dom'; import { StyleSheet, css } from 'aphrodite'; import breakpoints from '../../../styles/breakpoints'; import grid from '../../../styles/grid'; const PageFooter = () => ( -
-
- Umami Magazine & Umami Publications are purely fictional companies used for illustrative - purposes only. + ); const styles = StyleSheet.create({ + footerTop: { + backgroundColor: 'DarkGray', + padding: '0 0 1rem 0', + [breakpoints.echoAndUp]: { + ...grid.span(12), + }, + }, + footerBottom: { + backgroundColor: 'LightGray', + padding: '1rem 0 1rem 0', + [breakpoints.echoAndUp]: { + ...grid.span(12), + }, + }, + h2: { + fontSize: '2rem', + marginBottom: 0, + }, col: { - padding: '0 1rem 1rem 0', + padding: '0 0 1rem 0', [breakpoints.echoAndUp]: { ...grid.span(3), - padding: '0 1rem 0 0', - } + padding: '0 0 2rem 0', + }, }, - middleCol: { + leftCol: { [breakpoints.echoAndUp]: { - textAlign: 'right', - } + ...grid.span(9), + }, }, rightCol: { [breakpoints.echoAndUp]: { padding: 0, - } + }, + }, + ul: { + padding: 0, + listStyleType: 'none', + margin: 0, }, });