From a6bd026c9f807d68948043fa06cfbf35dbf120f1 Mon Sep 17 00:00:00 2001 From: Prince Shakya Date: Wed, 6 May 2026 16:21:02 +0530 Subject: [PATCH] ui: fix mobile responsiveness and viewport scaling --- docker-compose.yml | 1 + finbot/apps/finbot/templates/base.html | 6 +++++- finbot/apps/finbot/templates/home.html | 8 ++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 97f30769..00e8859b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,6 +18,7 @@ services: condition: service_healthy required: false volumes: + - ./finbot:/app/finbot - sqlite_data:/app/data - uploads:/app/uploads - cache:/app/cache diff --git a/finbot/apps/finbot/templates/base.html b/finbot/apps/finbot/templates/base.html index 69dfe82b..f54bce7b 100644 --- a/finbot/apps/finbot/templates/base.html +++ b/finbot/apps/finbot/templates/base.html @@ -62,12 +62,16 @@ background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #06ffa5 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; + box-decoration-break: clone; + -webkit-box-decoration-break: clone; } .gradient-text-alt { background: linear-gradient(90deg, #00d4ff, #06ffa5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; + box-decoration-break: clone; + -webkit-box-decoration-break: clone; } {% block extra_css %}{% endblock %} @@ -88,7 +92,7 @@ -