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;
vertical-align: middle; /* Ensure consistent vertical alignment */
}
tbody tr td {
min-height: 50px; /* Set a minimum height for all data cells */
tbody tr {
height: 50px; /* Set a minimum height for all data rows */
}
td.col-command { /* Command column */
font-size: 12px; /* Keep font size adjustment for command column if desired, or remove */