Skip to content
Snippets Groups Projects
Commit 7942a76e authored by lfr20's avatar lfr20
Browse files

Implementing contrast

parent 3dc49a58
No related branches found
No related tags found
4 merge requests!100Changed recaptcha key to the production one, removed console.logs and fixed...,!99Changed recaptcha key to the production one, removed console.logs and fixed...,!98Changed recaptcha key to the production one, removed console.logs and fixed...,!86Acessibility
......@@ -19,6 +19,7 @@ along with Plataforma Integrada MEC. If not, see <http://www.gnu.org/licenses/>
import React, {Component} from 'react';
import {Row, Col, Container} from 'react-grid-system';
import acessoInfo from '../img/acesso-a-informacao.png';
const grayFooter={
backgroundColor: "#434343",
color: "white",
......@@ -27,10 +28,20 @@ const grayFooter={
paddingTop: "20px",
paddingBottom: "10px"
};
const blackFooter={
backgroundColor: "black",
color: "white",
textAlign: "center",
display: "block",
paddingTop: "20px",
paddingBottom: "10px"
};
class AGPLFooter extends Component{
render(){
return(
<div style={grayFooter}>
<div style={this.props.contrast === '' ? grayFooter : blackFooter}>
<Container>
<Row justify="around">
<Col md={1}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment