Tighten responsive breakpoints at 360px and 768px#500
Open
iyanumajekodunmi756 wants to merge 1 commit into
Open
Tighten responsive breakpoints at 360px and 768px#500iyanumajekodunmi756 wants to merge 1 commit into
iyanumajekodunmi756 wants to merge 1 commit into
Conversation
- Add centralized breakpoint configuration in src/config/breakpoints.ts - Update Layout.css: Add 360px breakpoint for very small screens, tighten header padding - Update Button.css: Add 360px breakpoint for smaller button padding - Update Banner.css: Add 360px breakpoint to ensure banner content fits without overflow - Update ConfirmDialog.css: Update 767px to 768px, add 360px for dialog fit - Update CreateBondFlow.css: Add 360px breakpoint for flow content fit, fix lint errors - Update AddressInput.css: Add 360px breakpoint for input fit - Update AmountInput.css: Add 360px breakpoint for input fit - Update Dashboard.css: Update 767px to 768px, add 360px for dashboard content fit - Update Transactions.css: Update 639px to 640px, add 360px for table content fit - Update index.css: Update 767px to 768px for footer responsive behavior - Fix pre-existing syntax error in ToastProvider.tsx (removed stray + character) Closes CredenceOrg#385
|
@iyanumajekodunmi756 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
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.
Summary
This PR tightens responsive breakpoints at 360px and 768px across the application to fix overflow and cropped CTAs on critical screens. The changes ensure that the UI renders correctly on very small devices (360px) and tablet-sized screens (768px).
Changes Made
Centralized Breakpoint Configuration
Responsive Breakpoint Updates
Layout Component (src/components/Layout.css)
Button Component (src/components/Button.css)
Banner Component (src/components/Banner.css)
Confirm Dialog Component (src/components/ConfirmDialog.css)
Create Bond Flow Component (src/components/CreateBondFlow.css)
Address Input Component (src/components/AddressInput.css)
Amount Input Component (src/components/AmountInput.css)
Dashboard Page (src/pages/Dashboard.css)
Transactions Page (src/pages/Transactions.css)
Global Styles (src/index.css)
Bug Fixes
Testing
The changes were tested by:
Note: Full build and test execution is blocked by pre-existing issues in ActivityTimeline.tsx (duplicate exports and structural errors) that are unrelated to this PR's responsive breakpoint changes.
Acceptance Criteria
Implementation Notes
Closes #385