1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

Fix table alignment

This commit is contained in:
downtownallday 2021-04-07 08:27:22 -04:00
parent b7faafca6b
commit 002c4edb88
2 changed files with 7 additions and 0 deletions

View File

@ -24,6 +24,9 @@ Vue.component('chart-table', {
'items': this.items,
'caption-top': true
},
attrs: {
'thead-tr-class': 'h-1'
},
scopedSlots: scopedSlots
});

View File

@ -28,3 +28,7 @@
.clickme:hover {
background-color: var(--hover-bg-color);
}
.h-1 {
height: 1em;
}