From ca78a5828a246f25cfb470ba7ed06e7be52b4b27 Mon Sep 17 00:00:00 2001 From: shano Date: Sun, 12 Feb 2023 20:33:00 +0530 Subject: [PATCH 1/2] changed the color contrast between background and hover color in footer. --- src/components/Footer.module.css | 3 +++ src/styles/variables.css | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/components/Footer.module.css b/src/components/Footer.module.css index de3935ae..5cfb0e68 100644 --- a/src/components/Footer.module.css +++ b/src/components/Footer.module.css @@ -18,6 +18,9 @@ & a { text-decoration: underline; } + & a:hover { + color: var(--footer-hover); + } } .root.withSidebar { diff --git a/src/styles/variables.css b/src/styles/variables.css index 5e101b50..131c4d26 100644 --- a/src/styles/variables.css +++ b/src/styles/variables.css @@ -37,6 +37,8 @@ --download-inactive: #8890B3; --download-background-active: rgba(80, 139, 255, 0.08); + --footer-hover:#ffffc2; + --text-xsmall: 0.8rem; --text-small: 0.875rem; --text-regular: 1rem; From f64c9e8e3eaee5c2473deeea1a6a63c79ca7db03 Mon Sep 17 00:00:00 2001 From: shano Date: Mon, 13 Feb 2023 18:29:49 +0530 Subject: [PATCH 2/2] Low contrast between background and foreground colors (text) --- src/styles/pages/index.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/pages/index.module.css b/src/styles/pages/index.module.css index 4d0f3c59..98c888e6 100644 --- a/src/styles/pages/index.module.css +++ b/src/styles/pages/index.module.css @@ -138,6 +138,10 @@ .card:active { border-color: var(--processing-blue-mid); background: var(--processing-blue-mid); + + & p{ + color: white; + } } /* Participate */