Set minimum table width on web app for better readability

This commit is contained in:
Debanjum
2025-08-28 01:56:39 -07:00
parent dd8e805cfe
commit c0f192b436

View File

@@ -52,6 +52,7 @@ div.chatMessageWrapper a span {
border: 1px solid hsl(var(--border));
padding: 8px 12px;
text-align: left;
min-width: 120px;
}
.chatMessageWrapper table th {
@@ -247,6 +248,11 @@ div.trainOfThoughtElement ul {
width: 100%;
height: auto;
}
.chatMessageWrapper table th,
.chatMessageWrapper table td {
min-width: 40px;
}
}
/* Print-specific styles for chat messages */