fix(css): remove horizontal transform on footer link hover #93
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue Reference
Footer “Resources” Section Lacks Padding #61
What Was Changed
Removed horizontal transform on footer link hover
Why Was It Changed
The footer links in the "Resources" section (and other footer columns) had a horizontal shift effect on hover, caused by a
transform: translateX(3px)property. This created an inconsistent user experience as the links would move horizontally when hovered, which could be distracting and doesn't align with modern UI/UX best practices for subtle hover effects.Screenshots
ui.fix.mp4
Additional Context (Optional)
Changes made:
transform: translateX(3px)property from the.footer__link-item:hoverstate in custom.css#bbdefbrgba(255, 255, 255, 0.05)transition: all 0.2s easeBefore/After:
This change improves the user experience by removing unnecessary animation effects that could be distracting, while maintaining clear visual feedback for interactive elements. The footer links now provide a more polished and professional interaction pattern that aligns with modern web design principles.
Summary by CodeRabbit