Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion src/components/aidaos/DAOTabLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function DAOTabLayout({
</div>
</div>
) : (
<div className="bg-card/30 backdrop-blur-sm">{children}</div>
<div className="bg-card/30">{children}</div>
)}
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/aidaos/RootDAOPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@ export function RootDAOPage({ children, daoName }: RootDAOPageProps) {
// };

return (
<div className="flex flex-col w-full">
<main className="overflow-y-auto overflow-x-hidden">
<div className="flex flex-col w-full min-h-0">
<div className="flex-1">
<div className=" sm:px-6 lg:px-14 py-4 mx-auto w-full">
<div className="bg-background p-4 sm:p-6 rounded-sm mb-6">
{/* <div className="flex flex-col sm:flex-row items-start sm:items-center gap-4 mb-4">
Expand Down Expand Up @@ -625,7 +625,7 @@ details in next post`}
</DialogContent>
</Dialog>
</div>
</main>
</div>
</div>
);
}
4 changes: 2 additions & 2 deletions src/components/proposals/ProposalCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import { useProposalStatus } from "@/hooks/useProposalStatus";
import { useProposalVote } from "@/hooks/useProposalVote";
import { Button } from "@/components/ui/button";
import { RefreshCw, AlertCircle } from "lucide-react";
import { motion } from "framer-motion";
import { safeNumberFromBigInt } from "@/utils/proposal";
import { cn } from "@/lib/utils";
import { motion } from "framer-motion";

interface ProposalCardProps {
proposal: Proposal | ProposalWithDAO;
Expand Down Expand Up @@ -162,7 +162,7 @@ export default function ProposalCard({
href={`/proposals/${proposal.id}`}
className="block group cursor-pointer"
>
<div className="py-4 px-8 rounded-sm mb-3 bg-background group-hover:bg-black transition-colors duration-300 max-w-full overflow-hidden">
<div className="py-4 px-8 rounded-sm mb-3 bg-background group-hover:bg-black transition-colors duration-300 max-w-full">
{/* Header */}
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between mb-3 sm:mb-4 gap-3">
<div className="flex-1 min-w-0">
Expand Down