From 63189d40cab6cb4ef7986b16df1bc56515edbfae Mon Sep 17 00:00:00 2001 From: vikingowl Date: Mon, 24 Jan 2022 17:48:26 +0100 Subject: [PATCH] more adjustments --- package.json | 1 + src/App.css | 17 ++++++++++++++ src/App.js | 4 +++- src/components/Footer.js | 12 +++++----- src/components/Nav.js | 48 +++++++++++++++++++++++++++++++++++++--- src/pages/Home.js | 2 +- src/pages/NotFound.js | 2 +- yarn.lock | 8 +++++++ 8 files changed, 83 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 33471d5..69680f5 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "react-scripts": "5.0.0", "sass": "^1.49.0", "sass-loader": "^12.4.0", + "snippets": "https://git.harting.dev/vikingowl/snippets.git", "web-vitals": "^2.1.4" }, "scripts": { diff --git a/src/App.css b/src/App.css index e69de29..3e260a1 100644 --- a/src/App.css +++ b/src/App.css @@ -0,0 +1,17 @@ +.navbar { + height: 80px; +} + +main { + margin-top: 80px; +} + +.footer { + height: 80px; + padding-top: 30px; +} + +.nav-link:hover { + color: var(--bs-secondary) !important; + text-shadow: 0 0 1px var(--bs-secondary), 0 0 1px var(--bs-secondary); +} diff --git a/src/App.js b/src/App.js index 3daf842..e43a967 100644 --- a/src/App.js +++ b/src/App.js @@ -18,7 +18,9 @@ function App() { -