-
Notifications
You must be signed in to change notification settings - Fork 84
MM2-1696 Fix: seller logo shrinking on PDP and design fixes for seller section #236
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
base: test
Are you sure you want to change the base?
Conversation
sylwia-werner
commented
Nov 14, 2025
- fixed seller logo shrinking
- fixed seller section on PDP and Seller page
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| @@ -1,5 +1,4 @@ | |||
| import LocalizedClientLink from "@/components/molecules/LocalizedLink/LocalizedLink" | |||
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.
We can get rid of this import
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.
Removed
| </div> | ||
| </div> | ||
| {showArrow && ( | ||
| <LocalizedClientLink className="ml-auto" href={`/sellers/${seller.handle}`}> |
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.
We can incluide aria-label property in this component with matching value, to improve accessibility. example from the ProductCard.tsx: <LocalizedClientLink href={/products/${product.handle}} aria-label={View ${productName}} title={View ${productName}} >
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.
that's right. In general the page accessibility is quite poor. It would be nice to pay more attention to it
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.
Added