style: Set height on table rows instead of min-height on cells

This commit is contained in:
Paul Gauthier (aider) 2025-04-13 12:44:02 -07:00
parent 3b10e3bcb5
commit cf0e6dac61

View file

@ -111,8 +111,8 @@ human intervention.
overflow-wrap: break-word; overflow-wrap: break-word;
vertical-align: middle; /* Ensure consistent vertical alignment */ vertical-align: middle; /* Ensure consistent vertical alignment */
} }
tbody tr td { tbody tr {
min-height: 50px; /* Set a minimum height for all data cells */ height: 50px; /* Set a minimum height for all data rows */
} }
td.col-command { /* Command column */ td.col-command { /* Command column */
font-size: 12px; /* Keep font size adjustment for command column if desired, or remove */ font-size: 12px; /* Keep font size adjustment for command column if desired, or remove */