diff --git a/src/App.css b/src/App.css deleted file mode 100755 index be0ab6c6..00000000 --- a/src/App.css +++ /dev/null @@ -1,3 +0,0 @@ -* { - box-sizing: border-box; -} \ No newline at end of file diff --git a/src/App.js b/src/App.js index 724a3db3..737385e5 100755 --- a/src/App.js +++ b/src/App.js @@ -1,5 +1,4 @@ import React, { Component } from 'react'; -import './App.css'; import Home from './Pages/Home/Home' import Projects from './Pages/Projects/Projects' import About from './Pages/About/About' diff --git a/src/index.css b/src/index.css index 11699e8a..6285ac0a 100755 --- a/src/index.css +++ b/src/index.css @@ -1,15 +1,20 @@ +* { + box-sizing: border-box; +} + body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + padding: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - font-family: 'Lato', sans-serif; - background-color: #1A1E23 !important; + font-family: "Lato", sans-serif; + background-color: #1a1e23 !important; } code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; }