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/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 */ 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;