Revertir cambios de Cultivos responsive

This commit is contained in:
2026-04-16 09:10:59 -03:00
parent d26b6c496b
commit 05693a7ea6
+5 -16
View File
@@ -31,7 +31,6 @@ import {
} from 'lucide-react'; } from 'lucide-react';
import { Card, CardContent } from '@/components/ui/card'; import { Card, CardContent } from '@/components/ui/card';
import { Badge } from '@/components/ui/badge'; import { Badge } from '@/components/ui/badge';
import { ScrollArea } from '@/components/ui/scroll-area';
import { Button } from '@/components/ui/button'; import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input'; import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label'; import { Label } from '@/components/ui/label';
@@ -1678,17 +1677,9 @@ const resetRes = () => {
</DialogContent> </DialogContent>
</Dialog> </Dialog>
{cs.length === 0 ? ( {cs.length === 0 ? <div className="text-center py-8 text-gray-400"><Microscope className="h-12 w-12 mx-auto mb-2 opacity-50" /><p>No hay cultivos</p></div> :
<div className="text-center py-8 text-gray-400"> cs.map(c => (
<Microscope className="h-12 w-12 mx-auto mb-2 opacity-50" /> <Card key={c.id} className="mb-2"><CardContent className="p-4">
<p>No hay cultivos</p>
</div>
) : (
<ScrollArea className="w-full">
<div className="flex gap-2 pb-2">
{cs.map(c => (
<Card key={c.id} className="min-w-[280px] w-[280px] flex-shrink-0">
<CardContent className="p-4">
<div className="flex flex-col gap-3"> <div className="flex flex-col gap-3">
<div className="flex items-start justify-between"> <div className="flex items-start justify-between">
<div className="flex items-center gap-3"> <div className="flex items-center gap-3">
@@ -1753,10 +1744,8 @@ const resetRes = () => {
)} )}
</div> </div>
</CardContent></Card> </CardContent></Card>
))} ))
</div> }
</ScrollArea>
)}
</div> </div>
); );
} }