Skip to content

Commit

Permalink
Smaller font size
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatson committed Dec 3, 2023
1 parent fc62653 commit 2ebe65c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/librqbit/webui/src/rqbit-web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 2ebe65c

Please sign in to comment.