fix: responsive mobile layout for tags list and commits toolbar#313
Open
AbhiVarde wants to merge 4 commits intobetter-auth:mainfrom
Open
fix: responsive mobile layout for tags list and commits toolbar#313AbhiVarde wants to merge 4 commits intobetter-auth:mainfrom
AbhiVarde wants to merge 4 commits intobetter-auth:mainfrom
Conversation
|
@AbhiVarde is attempting to deploy a commit to the better-auth Team on Vercel. A member of the Team first needs to authorize it. |
ping-maxwell
approved these changes
Mar 11, 2026
Member
ping-maxwell
left a comment
There was a problem hiding this comment.
Fix CI and this should be good to go!
Contributor
Author
fixed! all CI checks are green now 🙏 |
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.
Problem
Tags List
On mobile devices, the tags list had two issues:
Release,zip,tar.gz) were hover-only and completelyinvisible on touch devices, making downloads inaccessible on mobile
buttons since there was no width constraint
Commits Toolbar
On mobile devices, the commits toolbar had two issues:
a single row, causing date inputs to be cut off and inaccessible
the branch picker
Solution
tags-list.tsxflex-colon mobile andflex-rowonmd+soactions wrap to a second row below the tag name
md+viamd:opacity-0 md:group-hover:opacity-100ml-9 md:ml-0to actions row so it aligns under the tag nameon mobile, not the icon
max-w-[200px] md:max-w-noneandtruncate md:truncate-noneto release name badge so long names truncate only on mobile
commits-list.tsxflex-col gap-2 sm:flex-row sm:items-centerso controls stack vertically on mobile and align in a row on
sm+flex items-center gap-2with
flex-1so each takes 50% of the roww-full sm:w-72so it fills screen on mobileFiles Changed
apps/web/src/components/repo/tags-list.tsxapps/web/src/components/repo/commits-list.tsxScreenshots
Tags list mobile fix
Commits toolbar mobile fix