From afef6b8f0c8c51ceeb440c4e526208e7f00f257b Mon Sep 17 00:00:00 2001 From: Lucas dos Santos Abreu Date: Sun, 25 Feb 2018 09:34:03 -0300 Subject: [PATCH 1/2] fix footer --- CHANGELOG.md | 3 +++ src/App.css | 6 ++++++ src/Footer.css | 25 ++++++++++++++++++++++--- src/Footer.js | 6 +++--- 4 files changed, 34 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e135eab..1555fcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed +- Fixed Footer brocking when in lower widths + ## [0.1.0] - 2018-02-25 ### Added diff --git a/src/App.css b/src/App.css index 955ee30..1b7f850 100644 --- a/src/App.css +++ b/src/App.css @@ -4,6 +4,12 @@ padding-bottom: 12rem; } +@media (max-width: 576px) { + .CWSPApp { + padding-bottom: 16.5rem; + } +} + .CWSPApp header { font-family: Oswald, Roboto, sans-serif; font-size: 120%; diff --git a/src/Footer.css b/src/Footer.css index 224365d..f896740 100644 --- a/src/Footer.css +++ b/src/Footer.css @@ -8,13 +8,32 @@ left: 0; } +#footer a { + color: white; + border: 0; +} + #footer .text { float: right; - margin: 9px 32px 0 0; + margin: 0 2rem 0 0; text-align: right; } #footer .white-logo { - width: 28px; - margin-top: 5px; + float: right; + height: 4.5rem; +} + +@media (max-width: 576px) { + #footer { + text-align: center; + } + #footer .white-logo { + float: none; + text-align: center; + } + #footer .text { + text-align: center; + margin: 0; + } } \ No newline at end of file diff --git a/src/Footer.js b/src/Footer.js index a857860..77b03d7 100644 --- a/src/Footer.js +++ b/src/Footer.js @@ -7,11 +7,11 @@ const Footer = () => (
- +

- +55 47 3227-6359     - contato@coderockr.com + +55 47 3227-6359     + contato@coderockr.com

© 2018 Coderockr. Todos os direitos reservados.   Joinville - SC

From 9761d0dae1d7ad976f143cd5c9cfd03112685b95 Mon Sep 17 00:00:00 2001 From: Lucas dos Santos Abreu Date: Sun, 25 Feb 2018 09:38:46 -0300 Subject: [PATCH 2/2] define release version --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1555fcd..bec4ed4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.1.1] - 2018-02-25 + ### Fixed - Fixed Footer brocking when in lower widths