From 0c2d38a59f890afed6466658e1ad0341656137c8 Mon Sep 17 00:00:00 2001 From: jackyzha0 Date: Fri, 5 Mar 2021 16:53:52 -0800 Subject: title refactor --- frontend/src/components/Footer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/src/components/Footer.js') diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index c7878e5..3186a42 100644 --- a/frontend/src/components/Footer.js +++ b/frontend/src/components/Footer.js @@ -14,7 +14,7 @@ const Link = (props) => { const Footer = () => { return ( - © 2020 — , + (c) 2020 — , ); } -- cgit v1.2.3 From 3e8500d466b641ef34c24f8b0de8163a44ba7a9e Mon Sep 17 00:00:00 2001 From: jackyzha0 Date: Fri, 5 Mar 2021 22:17:18 -0800 Subject: refactoring css --- frontend/src/components/Footer.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'frontend/src/components/Footer.js') diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index 3186a42..1074fcb 100644 --- a/frontend/src/components/Footer.js +++ b/frontend/src/components/Footer.js @@ -3,6 +3,9 @@ import styled from 'styled-components' const SpacedFooter = styled.div` margin: 2em 0; + & a { + color: ${p => p.theme.colors.text}; + } ` const Link = (props) => { @@ -14,7 +17,7 @@ const Link = (props) => { const Footer = () => { return ( - (c) 2020 — , +

(c) 2020 — ,

); } -- cgit v1.2.3 From dbf726d9e021a692254defdab8b993063b15354f Mon Sep 17 00:00:00 2001 From: jackyzha0 Date: Sat, 6 Mar 2021 16:09:51 -0800 Subject: update watermark styling --- frontend/src/components/Footer.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'frontend/src/components/Footer.js') diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index 1074fcb..4afc7ba 100644 --- a/frontend/src/components/Footer.js +++ b/frontend/src/components/Footer.js @@ -2,7 +2,9 @@ import React from 'react'; import styled from 'styled-components' const SpacedFooter = styled.div` - margin: 2em 0; + & > p { + font-size: 0.8em; + } & a { color: ${p => p.theme.colors.text}; } @@ -17,7 +19,7 @@ const Link = (props) => { const Footer = () => { return ( -

(c) 2020 — ,

+

(c) 2020 // ,

); } -- cgit v1.2.3