From d6e956d9b44f6d0e72a490926f990acd9853b563 Mon Sep 17 00:00:00 2001 From: j Date: Mon, 9 Mar 2026 18:43:53 +1300 Subject: [PATCH] Add gitignore and tweak card layout: hide summary when expanded, widen container grid --- .gitignore | 2 ++ app/static/style.css | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a60b85 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +*.pyc diff --git a/app/static/style.css b/app/static/style.css index 7f47e84..02b32ed 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -128,6 +128,10 @@ main { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); } +.server-card.expanded .ct-summary-list { + display: none; +} + .server-card.offline .card-summary { opacity: 0.6; } @@ -563,7 +567,7 @@ main { .container-grid { display: grid; - grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 8px; }