Made cells align themself at middle of table

This commit is contained in:
Lucas Oliveira 2024-06-06 08:49:20 -03:00
commit eb67b0e007

View file

@ -100,3 +100,9 @@ select:-webkit-autofill:focus {
.json-view-dark {
background-color: #141924 !important;
}
.ag-row .ag-cell {
display: flex;
justify-content: center; /* align horizontal */
align-items: center;
}