From 4410a3bb4b8051c0066b568dfd28c7aad39065e0 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Sun, 25 Jun 2023 11:41:15 -0700 Subject: [PATCH] Limit max width of the pre tag to 100% of the screen width --- src/khoj/interface/web/index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/khoj/interface/web/index.html b/src/khoj/interface/web/index.html index bf8889f7..409a4504 100644 --- a/src/khoj/interface/web/index.html +++ b/src/khoj/interface/web/index.html @@ -344,6 +344,11 @@ background-color: #ef4444; font-size: small; } + + pre { + max-width: 100; + } +