Skip to content

Commit

Permalink
CSS regression fixes- testing session 2024-11-26 (#1018)
Browse files Browse the repository at this point in the history
Co-authored-by: Chandra Y <[email protected]>
  • Loading branch information
jarosenb and chandra-tacc authored Dec 3, 2024
1 parent d6d9f37 commit b9115f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}

.member-search {
margin-bottom: 1em;
font-size: 12px !important;
}

Expand Down
5 changes: 4 additions & 1 deletion client/src/styles/components/dropdown-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,18 @@ 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);
border-left: 10px solid transparent;
margin-left: 20px;
content: '';
}
.dropdown-menu::before {
top: -10px;
}
.dropdown-menu::after {
top: -9px;
border-bottom-color: var(--global-color-primary--xx-light);
}

Expand Down

0 comments on commit b9115f5

Please sign in to comment.