Skip to content

fix: Explorer tag overflow on mobile screens #804

Open
Abhijeet2409 wants to merge 1 commit intoOWASP:mainfrom
Abhijeet2409:fix/explorer-tag-overflow-mobile
Open

fix: Explorer tag overflow on mobile screens #804
Abhijeet2409 wants to merge 1 commit intoOWASP:mainfrom
Abhijeet2409:fix/explorer-tag-overflow-mobile

Conversation

@Abhijeet2409
Copy link

Problem

On smaller screens, the tag buttons on the Explorer page overflow horizontally and get partially cut off. This occurs because the tag container uses a flex layout but does not allow wrapping.

Solution

Enable wrapping for the tag container so tag buttons move onto the next line instead of overflowing.

.tags {
  flex-wrap: wrap;
}

Result

Tags now wrap correctly on smaller screens and remain fully visible without horizontal overflow.

Testing

Verified using browser responsive mode.

Before
Before fix

After
After fix

Scope

This change only affects the .tags container within the Explorer page and does not modify any global vendor styles.

Fixes #803

Signed-off-by: Abhijeet Saharan <abhijeetsaharan2236@gmail.com>
@Abhijeet2409 Abhijeet2409 marked this pull request as ready for review March 14, 2026 13:51
@Abhijeet2409 Abhijeet2409 changed the title fix: Explorer tag overflow on mobile screens (#803) fix: Explorer tag overflow on mobile screens Mar 14, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Explorer page: Tag buttons overflow and get cut off on mobile screens

1 participant