From c342388af8ac2d840a4cd035b729587049786d49 Mon Sep 17 00:00:00 2001 From: Riba <mrp19@inf.ufpr.br> Date: Tue, 18 Feb 2020 11:36:47 -0300 Subject: [PATCH] =?UTF-8?q?Fix=20pequenos=20problemas=20nas=20p=C3=A1ginas?= =?UTF-8?q?=20antigas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Components/SearchSection.js | 10 +++++----- src/env.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Components/SearchSection.js b/src/Components/SearchSection.js index 98977462..daee5853 100644 --- a/src/Components/SearchSection.js +++ b/src/Components/SearchSection.js @@ -72,13 +72,13 @@ class SearchSection extends Component{ <SearchBar/> </Container> */} <div style={{paddingBottom: "100px", color: "white"}}> - <a href="#sobre"><MdInfoOutline size="30px"/>SOBRE A PLATAFORMA</a> - <a href="#apresentacao"> <FaRegPlayCircle size="25px"/>VÃDEO DE APRESENTAÇÃO</a> + <a href="sobre" style={{color:"#fff",textDecoration: "none", outline:"none"}}><MdInfoOutline size="24px" style={{verticalAlign: "middle"}} />SOBRE A PLATAFORMA</a> + <a href="#apresentacao" style={{color:"#fff",textDecoration: "none"}}> <FaRegPlayCircle size="20px" style={{verticalAlign: "middle"}} />VÃDEO DE APRESENTAÇÃO</a> </div> <Row justify="center"> - <button style={{...buttonStyle, ...{backgroundColor: "#ff7f00"}}} onClick={()=> {this.props.function("Recursos")}}>Recursos Educacionais Digitais</button> - <button style={{...buttonStyle, ...{backgroundColor: "#e81f4f"}}} onClick={()=> {this.props.function("Materiais")}}>Materiais de Formação</button> - <button style={{...buttonStyle, ...{backgroundColor: "#673ab7"}}} onClick={()=> {this.props.function("Colecoes")}}>Coleções dos Usuários</button> + <button style={{...buttonStyle, ...{backgroundColor: "#ff7f00",fontSize:"1.14em"}}} onClick={()=> {this.props.function("Recursos")}}>Recursos Educacionais Digitais</button> + <button style={{...buttonStyle, ...{backgroundColor: "#e81f4f",fontSize:"1.14em"}}} onClick={()=> {this.props.function("Materiais")}}>Materiais de Formação</button> + <button style={{...buttonStyle, ...{backgroundColor: "#673ab7",fontSize:"1.14em"}}} onClick={()=> {this.props.function("Colecoes")}}>Coleções dos Usuários</button> </Row> </div> ); diff --git a/src/env.js b/src/env.js index f3072030..2c29ae8c 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.portalmec.c3sl.ufpr.br', +var apiDomain = 'https://api.portalmectest.c3sl.ufpr.br', apiVersion = 'v1', apiUrl = apiDomain + '/' + apiVersion; -- GitLab