From bb266d405b715a5f2ac5d1b88bc0256d7039ca0f Mon Sep 17 00:00:00 2001 From: death916 Date: Tue, 25 Nov 2025 02:14:22 -0800 Subject: [PATCH] restrict size --- deathclock/deathclock.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deathclock/deathclock.py b/deathclock/deathclock.py index ce03775..0371796 100755 --- a/deathclock/deathclock.py +++ b/deathclock/deathclock.py @@ -426,7 +426,8 @@ def index() -> rx.Component: ) ), padding="2rem", - max_width="1200px", + max_width="800px", + max_height="300px", margin="0 auto", flex_direction="column", )