mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user