From a2dd887dc24713e5aa6b4bb52af9aaab1986638c Mon Sep 17 00:00:00 2001 From: artoscinote <85488244+artoscinote@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:24:40 +0200 Subject: [PATCH] Unify user list style in protocols table [SCI-8696] (#5644) --- app/assets/stylesheets/protocols/index.scss | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/app/assets/stylesheets/protocols/index.scss b/app/assets/stylesheets/protocols/index.scss index fd0f03ffa..913b4a91b 100644 --- a/app/assets/stylesheets/protocols/index.scss +++ b/app/assets/stylesheets/protocols/index.scss @@ -105,6 +105,7 @@ align-items: center; color: var(--sn-black); display: flex; + gap: .25rem; &:hover { text-decoration: none; @@ -113,34 +114,30 @@ .global-avatar-container { align-items: center; - border: 2px solid $color-white; display: flex; height: 28px; justify-content: center; line-height: 28px; - margin-right: -.5em; width: 28px; } .more-users { background: $color-volcano; - border: 2px solid $color-white; border-radius: 50%; color: $color-white; - height: 32px; - line-height: 28px; - margin-right: -.5em; + height: 2em; + line-height: 2em; + margin-right: .25em; text-align: center; text-decoration: none; - width: 32px; + width: 2em; } .new-user { background: $color-concrete; - margin-left: .75em; - text-align: center; - line-height: 24px; height: 28px; + line-height: 24px; + text-align: center; width: 28px; } }