Skip to content
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
4 changes: 2 additions & 2 deletions src/components/cards/FoldedCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ const FoldedCardSteps = ({ items = [], onClose }: FolderCardProps) => {
<SwiperSlide
key={itemIndex}
className={cn(
"items-center justify-center h-screen flex",
"items-center justify-center h-screen flex my-auto",
!!image ? "bg-cover bg-center" : "bg-main"
)}
style={{
Expand Down Expand Up @@ -461,7 +461,7 @@ export const FolderCard = ({ items }: FolderCardProps) => {
const { days, hours, minutes, seconds } = countdown;

return (
<div>
<div className="h-full">
<div
className={cn(
"fixed inset-0 bg-main duration-300",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/proofs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ export default function QuestsPage() {
const { numRequirementsSatisfied } = useQuestRequirements(displayQuests);

return (
<div className="flex flex-col gap-4 pt-4">
<div className="flex flex-col gap-4 pt-4 h-full">
<span className="text-iron-600 font-sans text-xs">
Post proofs about your ZK11 experience on Twitter, while preserving
privacy over the people you met and talks you attended.
</span>

<LoadingWrapper
className="flex flex-col gap-4"
className="flex flex-col gap-4 h-full"
isLoading={isLoading}
fallback={<Placeholder.List items={3} />}
noResultsLabel="No proofs found"
Expand Down