dev_docs: Better present images in tables.

This commit is contained in:
Karl Stolley
2025-04-24 12:51:14 -05:00
committed by Tim Abbott
parent 79061c08d2
commit bd4d172408

View File

@@ -9,3 +9,10 @@
.wy-table-responsive {
overflow: visible !important;
}
/* Present tables with columns of equal size
when images are present. */
.rst-content table.docutils:has(img) {
table-layout: fixed;
width: 100%;
}