diff options
-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" /> |