Skip to content
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

[Dashboard] Fix minor layer issues #4928

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const SupplyCards: React.FC<SupplyCardsProps> = ({ contract }) => {
).toString();

return (
<div className="flex flex-row gap-3 md:gap-6">
<div className="flex flex-col gap-3 md:flex-row md:gap-6">
<Card as={Stat}>
<StatLabel mb={{ base: 1, md: 0 }}>Total Supply</StatLabel>
<Skeleton isLoaded={totalSupplyQuery.isSuccess}>
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/contract-ui/tabs/nfts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const ContractNFTPage: React.FC<NftOverviewPageProps> = ({

return (
<div className="flex flex-col gap-6">
<div className="flex flex-row items-center justify-between">
<div className="flex flex-col items-center justify-between gap-3 md:flex-row">
<h2 className="font-bold text-xl">Contract NFTs</h2>
<div className="flex flex-col gap-2 md:flex-row">
{isRevealable && <NFTRevealButton contract={contract} />}
Expand Down