From c32bd3564d172b2e07d378ec9e783dd089d7ce53 Mon Sep 17 00:00:00 2001 From: Mikunj Date: Thu, 29 Nov 2018 16:11:24 +1100 Subject: [PATCH] Fix minor UI layout. --- stylesheets/_index.scss | 4 ++-- stylesheets/_modules.scss | 4 ++++ stylesheets/_variables.scss | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/stylesheets/_index.scss b/stylesheets/_index.scss index 43d4215e8..711ee8152 100644 --- a/stylesheets/_index.scss +++ b/stylesheets/_index.scss @@ -146,7 +146,7 @@ background-color: $color-black-008-no-tranparency; display: flex; flex: 1; - height: 60px; + height: $header-height; padding-left: 16px; padding-right: 16px; } @@ -186,7 +186,7 @@ .underneathIdentityWrapper { position: absolute; - top: 60px; + top: $header-height; bottom: 0; left: 300px; right: 0; diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index de9f5611d..076220432 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -5,6 +5,7 @@ display: flex; flex-direction: column; align-items: flex-start; + margin-right: 8px; } .module-contact-name span { @@ -1443,6 +1444,9 @@ overflow: hidden; text-overflow: ellipsis; + display: flex; + align-items: center; + -webkit-user-select: text; } diff --git a/stylesheets/_variables.scss b/stylesheets/_variables.scss index 21ac12366..f7bb40910 100644 --- a/stylesheets/_variables.scss +++ b/stylesheets/_variables.scss @@ -180,7 +180,7 @@ $grey_d: #454545; // A few layout variables used cross-file -$header-height: 48px; +$header-height: 55px; $button-height: 24px; $border-radius: 5px;