fix(ui): resolve floating elements overlap across responsive breakpoints#6
Open
thinakaran123 wants to merge 3 commits intoaaventure1:mainfrom
Open
fix(ui): resolve floating elements overlap across responsive breakpoints#6thinakaran123 wants to merge 3 commits intoaaventure1:mainfrom
thinakaran123 wants to merge 3 commits intoaaventure1:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
PR Description
Summary
This PR fixes UI issues where floating elements were overlapping each other across multiple screen sizes. The layout has been adjusted to improve usability and visual consistency without affecting the desktop design.
Problem
Floating UI elements were overlapping and causing visual clutter at different responsive breakpoints:
320px
375px
768px
1200px+
This affected accessibility, readability, and interaction on smaller screens.
Changes Made
Breakpoints Tested
✅ 320px
✅ 375px
✅ 768px
✅ 1200px+
Before / After
Screenshots attached below demonstrating the UI improvements.
a)Audited at the 320px looks like the floating elements are bigger hence change the width and height of it


BEFORE CHANGES:-
AFTER CHANGES:-
B) Audited at the 375px and 768px looks like the floating elements are bigger hence change the width and height of it and the position are over lapping each other fix that as well.

BEFORE CHANGES:-
AFTER CHANGES:-

C) Audited at desktop size (1200px) Fixed the overlap problems of the floating elements
Contribution Approach
To keep reviews simple and auditable, I am addressing UI issues one bug at a time and submitting separate PRs for each fix.
Related Issue
#2