We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a203d77 commit 28763e4Copy full SHA for 28763e4
src/App.js
@@ -1,6 +1,8 @@
1
import React from 'react';
2
import { Provider } from 'react-redux';
3
4
+import './styles/global.css'
5
+
6
import store from './store'
7
import ComponentList from './components/ComponentList';
8
src/styles/global.css
@@ -0,0 +1,20 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+html, body, #root {
+ 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