From ec15f5b6f326710f62e434a34efc1ff0e77fd419 Mon Sep 17 00:00:00 2001 From: Camerin Date: Tue, 21 Sep 2021 13:37:12 -0400 Subject: [PATCH] Fixed some css issues Added border-box Fixed height of nav buttons fixed width of github proj web button --- src/components/css/Github.css | 2 +- src/components/css/Home.css | 4 ++++ src/components/css/Navigation.css | 9 +++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/components/css/Github.css b/src/components/css/Github.css index 6b18eca..2cf56ee 100644 --- a/src/components/css/Github.css +++ b/src/components/css/Github.css @@ -46,7 +46,7 @@ padding:10px; align-items:center; text-align: center; - width: 58px; + width: 88px; } .repo .description { diff --git a/src/components/css/Home.css b/src/components/css/Home.css index fffd0b2..3d38eaf 100644 --- a/src/components/css/Home.css +++ b/src/components/css/Home.css @@ -1,3 +1,7 @@ +* { + box-sizing: border-box; +} + a:link { color: #FFFFFF; text-decoration: none; diff --git a/src/components/css/Navigation.css b/src/components/css/Navigation.css index 4d97df3..54d541e 100644 --- a/src/components/css/Navigation.css +++ b/src/components/css/Navigation.css @@ -11,10 +11,6 @@ } .Navigation a, .Navigation button { - padding: 5px; - height: 55px; - border: none; - color: #CFC0C0 !important; display: flex; flex-direction: column; align-items:center; @@ -27,6 +23,11 @@ z-index: 10; background-color: inherit; text-align:center; + font-size: 16px; + padding: 5px; + height: 60px; + border: none; + color: #CFC0C0 !important; }