Skip to content

Commit

Permalink
Merge branch 'main' into task/WP-729
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcmillenmusic authored Dec 4, 2024
2 parents b3c8c16 + e5c17d8 commit 278448e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.10.1]

### Fixed

- WP-778: Fix infinite loop for state update in useEffect (#1019)
- Quick: CSS regression fixes- testing session (#1018)

## [3.10.0]

### Added
Expand Down Expand Up @@ -1134,7 +1141,8 @@ WP-306: Fix target path regression (#871)
## [1.0.0] - 2020-02-28
v1.0.0 Production release as of Feb 28, 2020.

[unreleased]: https://github.com/TACC/Core-Portal/compare/v3.10.0...HEAD
[unreleased]: https://github.com/TACC/Core-Portal/compare/v3.10.1...HEAD
[3.10.1]: https://github.com/TACC/Core-Portal/releases/tag/v3.10.1
[3.10.0]: https://github.com/TACC/Core-Portal/releases/tag/v3.10.0
[3.9.0]: https://github.com/TACC/Core-Portal/releases/tag/v3.9.0
[3.8.2]: https://github.com/TACC/Core-Portal/releases/tag/v3.8.2
Expand Down
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 278448e

Please sign in to comment.