Skip to content

Commit

Permalink
Configuracão da barra de navegação com uma classe especial
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFaria committed Feb 26, 2018
1 parent 0d8ef2c commit a681894
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# production
/build
**.css
src/assets/**/*.css

# misc
.DS_Store
Expand Down
7 changes: 3 additions & 4 deletions src/components/denuncias/DetalhamentoDenuncia.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ export default class DetalhamentoDenuncia extends Component {
render() {
return (
<div>
<h1>Nova Denúncia</h1>
<h4>Nova Denúncia</h4>

<div className="row">
<CampoTexto
id={'detalhamento'}
Expand Down Expand Up @@ -78,10 +79,8 @@ export default class DetalhamentoDenuncia extends Component {
onChange={(e) => { this.handleChange(e.target.value, 'horaOcorrencia') }}
/>
</div>

<h4>Local do crime</h4>
<br />

<div className="row">
<CampoTexto
id={'endereco'}
Expand Down
6 changes: 2 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';

import 'bootstrap/dist/css/bootstrap.css';
import 'font-awesome/css/font-awesome.css';
Expand All @@ -11,15 +10,14 @@ import Rotas from './routes/Routes'
import registerServiceWorker from './utils/registerServiceWorker';

import './assets/styles/index.css';
import './css/principal.css';


const store = configureStore();

ReactDOM.render(
<Provider store={store}>
<MuiThemeProvider>
<Rotas />
</MuiThemeProvider>
<Rotas />
</Provider>
,
document.getElementById('root'),
Expand Down

0 comments on commit a681894

Please sign in to comment.