changed zoom to .8

This commit is contained in:
Milan Martin Jäckel 2026-08-05 17:05:28 +02:00
parent 4081b4939b
commit 2f0f80fd93
3 changed files with 2 additions and 9 deletions

8
app.py
View File

@ -1,8 +0,0 @@
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(debug=True)

View File

@ -18,6 +18,7 @@
html {
min-height: 100%;
background: var(--bg);
zoom: 0.8;
}
body {

2
run.py
View File

@ -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)