From 908e8c985f6e78e8d0a2b092b16a69f9d965c0eb Mon Sep 17 00:00:00 2001
From: Luis Felipe Risch <lfr20@inf.ufpr.br>
Date: Tue, 16 Mar 2021 08:14:05 -0300
Subject: [PATCH] Fixing colors

---
 src/Components/EcFooter.js      | 4 ++--
 src/Components/SearchSection.js | 6 +++---
 src/env.js                      | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/Components/EcFooter.js b/src/Components/EcFooter.js
index f033939d..3aa6d961 100644
--- a/src/Components/EcFooter.js
+++ b/src/Components/EcFooter.js
@@ -48,7 +48,7 @@ class EcFooter extends Component{
         <Container>
         <Row>
         <Col md={4} sm={5} xs={5}>
-          <h4>Sobre</h4>
+          <h4 style={{color : "white"}}>Sobre</h4>
           <ul style={listStyle}>
             <li> <WhiteLink to="/sobre">Sobre a Plataforma</WhiteLink> </li>
             <li> <WhiteLink to="/sobre#portaisparceiros">Portais Parceiros</WhiteLink> </li>
@@ -57,7 +57,7 @@ class EcFooter extends Component{
           </ul>
         </Col>
         <Col md={4} sm={5} xs={5}>
-          <h4>Ajuda</h4>
+          <h4 style={{color : "white"}}>Ajuda</h4>
           <ul style={listStyle}>
             <li>    <WhiteLink to="/ajuda">Central de Ajuda</WhiteLink> </li>
             <li>    <WhiteLink to="/publicando-recurso">Publicando Recursos</WhiteLink> </li>
diff --git a/src/Components/SearchSection.js b/src/Components/SearchSection.js
index c2cdfc4e..66380b80 100644
--- a/src/Components/SearchSection.js
+++ b/src/Components/SearchSection.js
@@ -33,7 +33,7 @@ const bannerStyle = {
 }
 const titleStyle = {
     color: "white",
-    paddingTop: "5%"
+    paddingTop: "5%",
 }
 const buttonStyle = {
     alignItems: "flex-start",
@@ -70,8 +70,8 @@ class SearchSection extends Component{
     <ModalVideoApresentacao open={this.state.modalOpen} handleClose={this.toggleModal}/>
     <div style={bannerStyle}>
       <div style={titleStyle}>
-        <h2>Plataforma MEC de Recursos Educacionais Digitais</h2>
-        <h3 style={{fontWeight: "100"}}>
+        <h2 style={{color : "white"}}>Plataforma MEC de Recursos Educacionais Digitais</h2>
+        <h3 style={{fontWeight: "100", color: "white"}}>
           Encontre e compartilhe vídeos, animações e muitos outros Recursos
         </h3>
       </div>
diff --git a/src/env.js b/src/env.js
index 82bf229b..b7359157 100644
--- a/src/env.js
+++ b/src/env.js
@@ -17,7 +17,7 @@ You should have received a copy of the GNU Affero General Public License
 along with Plataforma Integrada MEC.  If not, see <http://www.gnu.org/licenses/>.*/
 
 
-var apiDomain = 'https://api.portalmectest.c3sl.ufpr.br',
+var apiDomain = 'https://api.portalmec.c3sl.ufpr.br',
     apiVersion = 'v1',
     apiUrl = apiDomain + '/' + apiVersion;
 
-- 
GitLab