-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor buttons and pagination to fix alignment issues #2091
Merged
+206
−222
Conversation
This file contains 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
✅ Thanks for the improvements! Browse a preview of your changes using the link below.
To edit notification comments on pull requests, go to your Netlify site configuration. |
anselmbradford
changed the title
Refactor buttons to fix alignment issues
Refactor buttons and pagination to fix alignment issues
Nov 5, 2024
jenn-franklin
approved these changes
Nov 6, 2024
anselmbradford
force-pushed
the
ans_refactor_btns
branch
from
November 6, 2024 16:42
96cccba
to
3f49923
Compare
contolini
approved these changes
Nov 6, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks so much better 👍
This was referenced Nov 7, 2024
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.
Refactor buttons to have less reliance on markup structure and classes, to simplify markup and fix alignment issues.
Removals
a-btn__icon--on-left
anda-btn__icon--on-right
classes.Changes
a-btn__text
anda-btn__icon
classes and instead target the text and icon with.a-btn span
and.a-btn svg
.Testing
Screenshots
Before
Note that the "Back" is too close to the divider.
After
^ Practically, this shouldn't show up. It's showing up here because the container for the pagination can be very narrow on the DS. This should probably use a container query, but for now, this just fixes the clipping that happens in the current version.
Notes
for
attribute and shouldn't. This PR fixes that.