Skip to content

Commit

Permalink
Merge pull request #664 from cardonator/bugfix/#661
Browse files Browse the repository at this point in the history
adjust styles on environment dropdown and modal
  • Loading branch information
helloanoop authored Oct 22, 2023
2 parents 64b46ca + 232027f commit 59c5c24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/bruno-app/src/components/Dropdown/StyledWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const Wrapper = styled.div`
background-color: ${(props) => props.theme.dropdown.bg};
box-shadow: ${(props) => props.theme.dropdown.shadow};
border-radius: 3px;
max-height: 90vh;
overflow-y: auto;
.tippy-content {
padding-left: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const StyledWrapper = styled.div`
background-color: ${(props) => props.theme.collection.environment.settings.sidebar.bg};
border-right: solid 1px ${(props) => props.theme.collection.environment.settings.sidebar.borderRight};
min-height: 400px;
height: 100%;
max-height: 85vh;
overflow-y: auto;
}
.environment-item {
Expand Down

0 comments on commit 59c5c24

Please sign in to comment.