From 2f0f80fd93902164ab27168c0d422eba3f478b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Martin=20J=C3=A4ckel?= Date: Wed, 5 Aug 2026 17:05:28 +0200 Subject: [PATCH] changed zoom to .8 --- app.py | 8 -------- app/static/style.css | 1 + run.py | 2 +- 3 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 app.py diff --git a/app.py b/app.py deleted file mode 100644 index db99a5d..0000000 --- a/app.py +++ /dev/null @@ -1,8 +0,0 @@ -from app import create_app - - -app = create_app() - - -if __name__ == "__main__": - app.run(debug=True) diff --git a/app/static/style.css b/app/static/style.css index c0db413..299a8c2 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -18,6 +18,7 @@ html { min-height: 100%; background: var(--bg); + zoom: 0.8; } body { diff --git a/run.py b/run.py index db99a5d..3013bac 100644 --- a/run.py +++ b/run.py @@ -5,4 +5,4 @@ app = create_app() if __name__ == "__main__": - app.run(debug=True) + app.run(host="0.0.0.0", port=5000, debug=True)