From 9b90fe895a714069277f1bbdebbc3504598f02e7 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 15 Jan 2025 14:51:18 +0000 Subject: [PATCH] Remove box-shadow and make bg-color match table --- frontend/src/components/Chain/Chain.css | 1 - frontend/src/components/Chain/Header.css | 1 + frontend/src/index.css | 4 ++++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Chain/Chain.css b/frontend/src/components/Chain/Chain.css index 8a82ae5a3..8cc19ea45 100644 --- a/frontend/src/components/Chain/Chain.css +++ b/frontend/src/components/Chain/Chain.css @@ -30,5 +30,4 @@ along with this program. If not, see . min-height: 100%; background: #2c2b2b; color: #fff; - box-shadow: rgba(0, 0, 0, 0.5) 0 3px 30px; } diff --git a/frontend/src/components/Chain/Header.css b/frontend/src/components/Chain/Header.css index 442698acb..20d06cb53 100644 --- a/frontend/src/components/Chain/Header.css +++ b/frontend/src/components/Chain/Header.css @@ -24,6 +24,7 @@ along with this program. If not, see . color: #000; min-width: 1350px; position: relative; + background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgb(255, 255, 255) 17%), white; } .Header-tabs { diff --git a/frontend/src/index.css b/frontend/src/index.css index 8d82db5e0..ea62fa7b2 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -21,6 +21,10 @@ along with this program. If not, see . box-sizing: border-box; } +html, body { + background-color: #2c2b2b; +} + body { margin: 0; padding: 0;