feat: tune web app visual

This commit is contained in:
3252a8
2026-04-24 21:04:53 +03:00
parent bc29f5ebd6
commit 86f944e544
10 changed files with 2621 additions and 1469 deletions
+8
View File
@@ -0,0 +1,8 @@
import re
with open('bot/app/web/templates/subscription_webapp.html', 'r', encoding='utf-8') as f:
html = f.read()
long_classes = set(re.findall(r'class="([^"]{40,})"', html))
for cls in long_classes:
print(f"--- LONG CLASS ({len(cls)} chars) ---\n{cls}\n")