Skip to content
Merged
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
6 changes: 3 additions & 3 deletions apps/dashboard/src/contract-ui/tabs/nfts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export const ContractNFTPage: React.FC<NftOverviewPageProps> = ({

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