style(ui): torrent tablosu yerleşimini iyileştir

This commit is contained in:
2026-01-04 00:25:52 +03:00
parent 2bf2e2495d
commit 57f666d440

View File

@@ -88,7 +88,7 @@ export const TorrentTable = () => {
};
return (
<Card className="h-full">
<Card className="flex h-full flex-col">
<CardHeader className="flex items-center gap-3">
<CardTitle>Torrents</CardTitle>
<Input
@@ -98,8 +98,8 @@ export const TorrentTable = () => {
className="ml-auto w-28"
/>
</CardHeader>
<CardContent>
<div className="max-h-[360px] overflow-auto space-y-2">
<CardContent className="flex-1">
<div className="h-full overflow-auto space-y-2">
{filtered.map((torrent) => (
<div
key={torrent.hash}