From b9115f59ea48d4b35c15001ad9880142c2a6daf5 Mon Sep 17 00:00:00 2001 From: Jake Rosenberg Date: Tue, 3 Dec 2024 12:23:38 -0600 Subject: [PATCH] CSS regression fixes- testing session 2024-11-26 (#1018) Co-authored-by: Chandra Y --- .../DataFilesProjectMembers.module.scss | 1 - client/src/styles/components/dropdown-menu.css | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss b/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss index 69f6d645e..5a6e16afb 100644 --- a/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss +++ b/client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss @@ -20,7 +20,6 @@ } .member-search { - margin-bottom: 1em; font-size: 12px !important; } diff --git a/client/src/styles/components/dropdown-menu.css b/client/src/styles/components/dropdown-menu.css index 11f47044d..3a8cb8040 100644 --- a/client/src/styles/components/dropdown-menu.css +++ b/client/src/styles/components/dropdown-menu.css @@ -20,7 +20,6 @@ Styleguide Components.Dropdown .dropdown-menu::before, .dropdown-menu::after { position: absolute; - top: -10px; left: 65px; border-right: 10px solid transparent; border-bottom: 10px solid var(--global-color-accent--normal); @@ -28,7 +27,11 @@ Styleguide Components.Dropdown margin-left: 20px; content: ''; } + .dropdown-menu::before { + top: -10px; + } .dropdown-menu::after { + top: -9px; border-bottom-color: var(--global-color-primary--xx-light); }