Smaller font size
This commit is contained in:
parent
fc62653727
commit
2ebe65cf1f
1 changed files with 2 additions and 2 deletions
|
|
@ -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 }) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue