From e0e819742649770df1bd3301eece64dcd20b62cd Mon Sep 17 00:00:00 2001 From: wipedlifepotato <60944239+wipedlifepotato@users.noreply.github.com> Date: Mon, 24 Aug 2026 17:05:39 +0300 Subject: [PATCH] fix: fix max-width for content --- contrib/webconsole/torrent_client.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/webconsole/torrent_client.html b/contrib/webconsole/torrent_client.html index 9232174f..5ed2c71b 100644 --- a/contrib/webconsole/torrent_client.html +++ b/contrib/webconsole/torrent_client.html @@ -64,7 +64,7 @@ background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius); - overflow: auto; + overflow: hidden; } .torrent-wrapper table { @@ -139,6 +139,10 @@ background-color: var(--danger); color: white; } + + .content { + max-width: 100em; /*fix for torrent interface*/ + }