diff options
author | Renard | 2019-09-27 13:28:25 -0300 |
---|---|---|
committer | Renard | 2019-09-27 13:28:25 -0300 |
commit | 90e2d4a8a1a391b775800478d86de2b653716cd2 (patch) | |
tree | aee9a75d82587ae2292037b3c6d35604e70ecc36 | |
parent | b6199c5327882de4afa4d59c45b78164620418a9 (diff) | |
download | bai-client-90e2d4a8a1a391b775800478d86de2b653716cd2.tar.gz bai-client-90e2d4a8a1a391b775800478d86de2b653716cd2.tar.xz bai-client-90e2d4a8a1a391b775800478d86de2b653716cd2.zip |
Footer nightmode
-rw-r--r-- | src/App.css | 4 | ||||
-rw-r--r-- | src/App.js | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/App.css b/src/App.css index 6339996..33249a4 100644 --- a/src/App.css +++ b/src/App.css @@ -128,4 +128,8 @@ .postMessage hr, .postMessage small { display: none +} + +.footer.night { + color: rgba(255, 255, 255, 0.7); }
\ No newline at end of file @@ -182,7 +182,11 @@ class App extends Component { <NotFound default /> </Router> </Container> - <Segment vertical textAlign="center" className="footer"> + <Segment + vertical + textAlign="center" + className={nightMode ? "footer night" : "footer"} + > Bievenido a Internet 2010-2019 <br /> <Icon name="github" /> |