diff --git a/package.json b/package.json index a01a5cb..b8e47e8 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "eject": "react-scripts eject" }, "proxy": "http://127.0.0.1:4000", + "homepage": "/", "eslintConfig": { "extends": "react-app" }, diff --git a/src/App.js b/src/App.js index 68380bc..35baef3 100644 --- a/src/App.js +++ b/src/App.js @@ -1,5 +1,6 @@ import React from 'react'; import MainBody from "./MainBody"; +import "./css/App.css" // include bootstraps css import 'bootstrap/dist/css/bootstrap.min.css'; @@ -18,17 +19,26 @@ class App extends React.Component { return (
diff --git a/src/css/App.css b/src/css/App.css new file mode 100644 index 0000000..c00403f --- /dev/null +++ b/src/css/App.css @@ -0,0 +1,11 @@ +.nav-item{ + cursor: pointer; +} +.nav-link{ + color: rgba(255,255,255,.5); + font-weight: bold; +} + +.nav-link:hover{ + color: rgba(255,255,255,1); +} \ No newline at end of file