From af833921c3c6a5fb1232ad633c944c299c23f8c1 Mon Sep 17 00:00:00 2001 From: abhijeet nardele <234410808+abhijeetnardele24-hash@users.noreply.github.com> Date: Wed, 8 Apr 2026 19:26:57 +0530 Subject: [PATCH] fix: simplify footer quick links styling --- app/(core)/components/Footer.jsx | 12 +++++---- app/(core)/styles/index.css | 45 +++++++++++++++----------------- 2 files changed, 28 insertions(+), 29 deletions(-) diff --git a/app/(core)/components/Footer.jsx b/app/(core)/components/Footer.jsx index ac2fe308..7cd91f95 100644 --- a/app/(core)/components/Footer.jsx +++ b/app/(core)/components/Footer.jsx @@ -49,19 +49,21 @@ function Footer() {
diff --git a/app/(core)/styles/index.css b/app/(core)/styles/index.css index e58f2b4b..2d428b81 100644 --- a/app/(core)/styles/index.css +++ b/app/(core)/styles/index.css @@ -953,45 +953,42 @@ footer { padding: 0; display: flex; flex-direction: column; - align-items: center; + align-items: flex-start; } .footer-links li { margin-bottom: 0.5rem; - position: relative; + width: 100%; } -.footer-links li::before { - content: ""; - position: absolute; - left: -1.2rem; - top: 50%; - transform: translateY(-50%); - width: 0.7em; - height: 0.7em; - border-radius: 50%; - transition: - box-shadow 0.3s, - background 0.3s; +.footer-links h3 { + justify-content: flex-start; + text-align: left; } -.footer-links a { - color: var(--accent-color); +.footer-links a, +.footer-feedback-link { + color: var(--text-color); + background: none; + border: 0; + padding: 0; + font: inherit; + text-align: left; transition: color 0.3s, - text-shadow 0.3s; + text-shadow 0.3s, + box-shadow 0.3s; } -.footer-links a:hover { +.footer-links a:hover, +.footer-feedback-link:hover { color: var(--accent-color); - text-shadow: 0 0 6px var(--accent-color); - box-shadow: 0 0 0px var(--accent-color); + text-shadow: none; + box-shadow: none; } -.footer-links li:hover::before, -.footer-links a:hover ~ li::before { - background: var(--accent-color); - box-shadow: 0 0 8px var(--accent-color); +.footer-feedback-link { + cursor: pointer; } .footer-center {