Explorar el Código

Moving some styling out of App and into index

Kirk Trombley hace 5 años
padre
commit
fce2a22052
Se han modificado 2 ficheros con 1 adiciones y 3 borrados
  1. 0 3
      client/src/App.js
  2. 1 0
      client/src/index.css

+ 0 - 3
client/src/App.js

@@ -3,9 +3,6 @@ import styled from 'styled-components';
 import Game from "./components/Game";
 
 const Wrapper = styled.div`
-  background-color: #222;
-  color: #ccc;
-  font-weight: 500;
   height: 100%;
   width: 100%;
   display: flex;

+ 1 - 0
client/src/index.css

@@ -7,6 +7,7 @@ body {
   -moz-osx-font-smoothing: grayscale;
   background-color: #222;
   color: #ccc;
+  font-weight: 500;
 }
 
 code {