From 5b0f95fed9f3b72eed8f429e281433ab982e82e3 Mon Sep 17 00:00:00 2001 From: Ajay Bura Date: Fri, 19 Nov 2021 10:00:47 +0530 Subject: [PATCH] Fix alignment in ProfileViewer Signed-off-by: Ajay Bura --- src/app/atoms/context-menu/ContextMenu.scss | 2 +- src/app/organisms/profile-viewer/ProfileViewer.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/atoms/context-menu/ContextMenu.scss b/src/app/atoms/context-menu/ContextMenu.scss index 4a8cc2a..a0919c1 100644 --- a/src/app/atoms/context-menu/ContextMenu.scss +++ b/src/app/atoms/context-menu/ContextMenu.scss @@ -44,7 +44,7 @@ .context-menu__item { button[class^="btn"] { width: 100%; - justify-content: start; + justify-content: flex-start; border-radius: 0; box-shadow: none; white-space: nowrap; diff --git a/src/app/organisms/profile-viewer/ProfileViewer.scss b/src/app/organisms/profile-viewer/ProfileViewer.scss index b10b1aa..b7da7c5 100644 --- a/src/app/organisms/profile-viewer/ProfileViewer.scss +++ b/src/app/organisms/profile-viewer/ProfileViewer.scss @@ -20,7 +20,7 @@ border-bottom: 1px solid var(--bg-surface-border); &__info { - align-self: end; + align-self: flex-end; flex: 1; min-width: 0; @@ -35,7 +35,7 @@ } } &__role { - align-self: end; + align-self: flex-end; & > .text { margin-bottom: var(--sp-ultra-tight); }