1/n Fixing dark mode

This commit is contained in:
Igor Katson 2023-12-16 10:23:24 +00:00
parent f42e57d464
commit 8d886e0961
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
6 changed files with 31 additions and 35 deletions

View file

@ -22,7 +22,7 @@ export const TorrentsList = (props: {
);
}
return (
<div className="flex flex-col gap-2 mx-2 mt-3">
<div className="flex flex-col gap-2 mx-2">
{props.torrents.map((t: TorrentId) => (
<Torrent id={t.id} key={t.id} torrent={t} />
))}