-
Notifications
You must be signed in to change notification settings - Fork 137
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: design qa feedback #1033
fix: design qa feedback #1033
Changes from 8 commits
a10a2ca
33d594c
79b0da1
8fefd48
a4b9d4f
1cef8b2
b3f1cea
8f5fba2
b630e9e
8b3394a
b94a10e
cfc506f
edfffd1
2ec5a15
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,7 @@ export const MintCard = () => { | |
<div className="sm:self-center"> | ||
<div className="flex items-center flex-col justify-center mb-12 xl:mb-0 xl:flex-row xl:justify-center xl:items-start bg-bg-surface-default radius-1 border-btn-secondary border md:mx-6 xl:mx-0 overflow-hidden xl:h-[532px]"> | ||
<RenderUserConnectionAvatar className="sm:hidden w-full p-6 mb-0 pb-6 relative after:absolute after:bottom-0 after:left-6 after:right-6 after:h-[1px] after:bg-border" /> | ||
<div className="hidden xl:block px-10 py-12 h-full w-[428px]"> | ||
<div className="hidden xl:block px-10 py-12 h-full"> | ||
<h1 className="text-3xl font-semibold leading-10 mb-8 text-fg-primary"> | ||
{!nftTransfered | ||
? "One-click checkout" | ||
|
@@ -123,15 +123,15 @@ export const MintCard = () => { | |
<ValueProps status={status} /> | ||
</div> | ||
<div | ||
className={`p-6 xl:px-10 xl:py-12 h-full bg-bg-surface-default xl:bg-bg-surface-inset md:min-w-96`} | ||
className={`p-6 xl:px-10 xl:py-12 h-full bg-bg-surface-default xl:bg-bg-surface-inset`} | ||
> | ||
<NFT | ||
nftTransfered={nftTransfered} | ||
transactionUrl={transactionUrl} | ||
status={status} | ||
/> | ||
<MintCardActionButtons | ||
className="hidden xl:block" | ||
className="hidden xl:block w-[208px] m-auto" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any reason for the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. they want it to match the width of the mint image which isn't a direct sibling |
||
nftTransfered={nftTransfered} | ||
handleCollectNFT={handleCollectNFT} | ||
disabled={isActionButtonsDisabled} | ||
|
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.
nit: can we put these bg colors into the theme for the ui-demo somewhere? I ran into some inconsistencies with background colors on the toggles (eg. Email toggle vs Passkey On Signup toggle when passkeys are off)
There's also a thread about revisiting some of the bg colors of the toggles and that will make it easier to address them all
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.
These are hardcoded because we don't want them to change when we alter the theme from light to dark
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.
If we end up theming the sidebar we will refactor all the hardcoded values.