Fix middle vertical align on table cells

For merged cells, middle vertical alignment would not work properly (it
was either aligned to the top or bottom).
This commit is contained in:
Elian Doran 2023-02-26 22:45:58 +02:00
parent a88582c610
commit 44c0ecdbfa
2 changed files with 13 additions and 0 deletions

View file

@ -13,4 +13,11 @@
.relation-map-wrapper {
height: 100vh !important;
}
.table thead th,
.table td, .table th {
/* Fix center vertical alignment of table cells */
vertical-align: middle;
}
}

View file

@ -990,3 +990,9 @@ button.close:hover {
textarea {
cursor: auto;
}
.table thead th,
.table td, .table th {
/* Fix center vertical alignment of table cells */
vertical-align: middle;
}