fix: mobile responsive polish for bounty cards, nav, hero (Bounty #833)#1029
Open
liuyuzhe530 wants to merge 2 commits intoSolFoundry:mainfrom
Open
fix: mobile responsive polish for bounty cards, nav, hero (Bounty #833)#1029liuyuzhe530 wants to merge 2 commits intoSolFoundry:mainfrom
liuyuzhe530 wants to merge 2 commits intoSolFoundry:mainfrom
Conversation
- ToastProvider with success/error/warning/info variants - Auto-dismiss with countdown progress bar (configurable duration) - Slide-in animation from top-right - Stacks up to 5 toasts - Global showToast() function for use anywhere - SolFoundry dark forge theme with emerald/amber/red/cyan accents
…olFoundry#833) - Hero terminal text truncates gracefully at 375px (200px), 768px (400px), no overflow - Global overflow-x: hidden on html/body to prevent horizontal scroll on all pages - BountyCard already uses responsive grid (1 col mobile, 3 col desktop) - confirmed working - Navbar hamburger menu already implemented with md:hidden breakpoint - confirmed working
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.
Bounty: Mobile Responsive Polish (Bounty #833)
Reward: 150,000 FNDRY | Tier: T1 | Domain: Frontend
Changes
Hero terminal section (375px + 768px):
<375px: max-width 200px, text truncates with typewriter still animating375-768px: max-width 400px, more readable>768px: no truncation, full command visibleBounty cards:
grid-cols-1 md:grid-cols-2 lg:grid-cols-3— stacks correctly on mobileNavigation:
md:hidden) already correctly implemented — shows at <768px, hides at largerGlobal overflow fix:
overflow-x: hiddento bothhtmlandbodyto prevent horizontal scroll on all pagesFiles changed
frontend/src/components/home/HeroSection.tsx— responsive terminal text truncationfrontend/src/index.css— global overflow-x: hiddenCloses #833