From 7cd6f5ba70c6e72b0097971e6af1f182a10b780b Mon Sep 17 00:00:00 2001 From: Eva Date: Thu, 26 Jan 2023 08:40:26 +0100 Subject: [PATCH] :bug: User icons are not centered --- frontend/resources/styles/main/partials/workspace-header.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/resources/styles/main/partials/workspace-header.scss b/frontend/resources/styles/main/partials/workspace-header.scss index b2a0a89d57..755a442c5a 100644 --- a/frontend/resources/styles/main/partials/workspace-header.scss +++ b/frontend/resources/styles/main/partials/workspace-header.scss @@ -15,7 +15,7 @@ display: grid; grid-template-areas: "left center right"; - grid-template-columns: auto 1fr auto; + grid-template-columns: 1fr auto 1fr; grid-template-rows: 100%; padding: 0; @@ -32,6 +32,7 @@ .right-area { grid-area: right; display: flex; + justify-content: flex-end; height: 100%; }