diff --git a/src/components/Footer.module.css b/src/components/Footer.module.css index de3935ae0..5cfb0e68b 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/pages/index.module.css b/src/styles/pages/index.module.css index 4d0f3c59b..98c888e6d 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 */ diff --git a/src/styles/variables.css b/src/styles/variables.css index 5e101b500..131c4d260 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;