-
Notifications
You must be signed in to change notification settings - Fork 21
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
Fix stroke on category pages paginations #190
Conversation
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.
LGTM 👍🏻
content: ""; | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
right: 0; | ||
left: 0; | ||
background-color: var(--wp--preset--color--off-white-2); | ||
background-color: var(--stroke-color); |
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.
Is this reused somewhere? If not, is there a benefit to creating a var for it?
This does seem to resolve the issue, but it needs a rebase; The |
It's used to override the background color on the accent pages, but since it's only used once, it's more clear to set that directly.
8d73f08
to
6fbfe36
Compare
This PR fixes the positioning and color of the stroke on the category pages with pagination.
Closes #185
Closes #186