Skip to content

Commit 28763e4

Browse files
Catharina MesquitaCatharina Mesquita
authored andcommitted
Ädicionando estilo global ao componente App
1 parent a203d77 commit 28763e4

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import React from 'react';
22
import { Provider } from 'react-redux';
33

4+
import './styles/global.css'
5+
46
import store from './store'
57
import ComponentList from './components/ComponentList';
68

src/styles/global.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
html, body, #root {
8+
height: 100%;
9+
}
10+
11+
body {
12+
font: 14px 'Roboto', sans-serif;
13+
background: #fff;
14+
color: #333;
15+
-webkit-font-smoothing: antialiased !important;
16+
}
17+
18+
ul {
19+
list-style: none;
20+
}

0 commit comments

Comments
 (0)