From c164c3bd8db80d6ef223cf35a706d9f4af3be49e Mon Sep 17 00:00:00 2001 From: Roman Date: Tue, 9 Nov 2021 11:33:39 +0200 Subject: [PATCH] added vertical alignment for texts in the name column Signed-off-by: Roman --- src/renderer/components/+catalog/catalog.module.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/renderer/components/+catalog/catalog.module.css b/src/renderer/components/+catalog/catalog.module.css index 34f3fe2460..587d1fd8c4 100644 --- a/src/renderer/components/+catalog/catalog.module.css +++ b/src/renderer/components/+catalog/catalog.module.css @@ -20,6 +20,11 @@ */ .Catalog { + :global(.TableHead) .entityName { + /* offset for icon to align texts in the column */ + padding-left: calc(21px + var(--padding) * 2.5); + } + :global(.TableRow):hover .pinIcon { display: block; }