Merge pull request #3650 from eliandoran/fix/vertical_align_table_cells

Centered vertical align does not seem to work on merged table cells
This commit is contained in:
zadam 2023-02-28 00:02:29 +01:00 committed by GitHub
commit ae6f2624a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -13,4 +13,11 @@
.relation-map-wrapper { .relation-map-wrapper {
height: 100vh !important; 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 { textarea {
cursor: auto; cursor: auto;
} }
.table thead th,
.table td, .table th {
/* Fix center vertical alignment of table cells */
vertical-align: middle;
}