-
Notifications
You must be signed in to change notification settings - Fork 0
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
[OUR415-314] Fixes eligibility and category lists in Browse Experience #258
Conversation
// Important to override react-burger-menu lib styles | ||
display: flex !important; | ||
flex-direction: column; | ||
align-items: center; |
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.
note: We got rid of the react-burger-menu lib so these declarations are no longer necessary.
@include r_max($break-tablet-s) { | ||
width: calc(100vw - $general-spacing-xs); | ||
} |
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.
note: This expands the top level category dropdown full width. Had not implemented it yet.
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.
Just wondering - Is there a reason for choosing general-spacing-xs? Or for adding that only on the category dropdown rather the nav dropdown too?
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.
Only that I discovered this variable defined the correct spacing.
@@ -38,6 +38,7 @@ | |||
align-self: flex-start; | |||
border-right: 0; | |||
background-color: #fff; | |||
z-index: $z-index-filters-menu; |
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.
note: Discovered a bug where the filters were not on top.
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.
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.
What browser/resolution is that? I don't even know how to get in that state 😅
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! (except lint failure)
@@ -0,0 +1,20 @@ | |||
import { faker } from "@faker-js/faker"; |
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.
praise: cool 😎
Also:
BrowseRefinementList
test, proving that tests are useful!