From 9b1737bafa9767af6617f27c181f1a36d7483877 Mon Sep 17 00:00:00 2001 From: Amang2004 Date: Fri, 31 Oct 2025 02:42:44 +0530 Subject: [PATCH] fix(css): remove horizontal transform on footer link hover - Deleted transform: translateX(3px) from footer__link-item hover state - Maintain color, text-decoration, and background style on hover without shift effect --- opsimate-docs/src/css/custom.css | 1 - 1 file changed, 1 deletion(-) diff --git a/opsimate-docs/src/css/custom.css b/opsimate-docs/src/css/custom.css index ec031aa..411b86c 100644 --- a/opsimate-docs/src/css/custom.css +++ b/opsimate-docs/src/css/custom.css @@ -174,7 +174,6 @@ h6 { .footer__link-item:hover { color: #bbdefb !important; - transform: translateX(3px); text-decoration: none !important; background: rgba(255, 255, 255, 0.05); }