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.
2 parents a203d77 + eed6730 commit 8bffe36Copy full SHA for 8bffe36
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,21 @@
+* {
+ margin: 0;
+ padding: 0;
+ outline: 0;
+ box-sizing: border-box;
+}
+html, body, #root {
9
+ height: 100%;
10
11
12
+body {
13
+ font: 14px 'Roboto', sans-serif;
14
+ background: #fff;
15
+ color: #333;
16
+ -webkit-font-smoothing: antialiased !important;
17
18
19
+ul {
20
+ list-style: none;
21
0 commit comments