* Added public directory and debug run code in index.js * Different entry points for development and publish * Add port to start debug script * Merge in progress * Merge in progress * Merge in progress * Merged last components
19 lines
374 B
CSS
19 lines
374 B
CSS
html,
|
|
body,
|
|
#root {
|
|
background-color: black;
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-family: Roboto, OpenSans, HelveticaNeue-Light, Helvetica Neue Light,
|
|
Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
|
|
}
|