From eb67b0e007c5e96f9629d77d320c4212bea09bf7 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 6 Jun 2024 08:49:20 -0300 Subject: [PATCH] Made cells align themself at middle of table --- src/frontend/src/style/classes.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/frontend/src/style/classes.css b/src/frontend/src/style/classes.css index 29140e7fa..ab031629a 100644 --- a/src/frontend/src/style/classes.css +++ b/src/frontend/src/style/classes.css @@ -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; +}