Smaller font size

This commit is contained in:
Igor Katson 2023-12-03 10:28:57 +00:00
parent fc62653727
commit 2ebe65cf1f
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5

View file

@ -342,11 +342,11 @@ const TorrentsList = (props: { torrents: Array<TorrentId> | null, loading: boole
<p>No existing torrents found. Add them through buttons below.</p>
</div>;
}
return <>
return <div style={{ 'fontSize': 'smaller' }}>
{props.torrents.map((t: TorrentId) =>
<Torrent id={t.id} key={t.id} torrent={t} />
)}
</>;
</div>;
};
export const RqbitWebUI = (props: { title: string }) => {