feat: add smaller font-size styling for tables in md-render
- Set table font-size to 0.85em for improved readability - Add professional table styling with borders and spacing - Include header styling with background color and bold text - Enhance visual hierarchy in generated HTML documents 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
d0abaab63a
commit
3e651adcfb
1 changed files with 16 additions and 0 deletions
|
|
@ -174,6 +174,22 @@ class CleanDocumentManager:
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
color: #6a737d;
|
color: #6a737d;
|
||||||
}
|
}
|
||||||
|
table {
|
||||||
|
font-size: 0.85em;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 1rem 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
th, td {
|
||||||
|
font-size: inherit;
|
||||||
|
border: 1px solid #dfe2e5;
|
||||||
|
padding: 0.5rem;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
background: #f6f8fa;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue