Skip to content

Commit

Permalink
Merge pull request #15628 from influxdata/zs-horizontalscrollbar-13943
Browse files Browse the repository at this point in the history
fix (ui): Horizontal and vertical scroll hiding elements
  • Loading branch information
zoesteinkamp authored Oct 31, 2019
2 parents e9e0dfc + eec51dd commit 08d0fc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $dapper-scrollbars--size: 6px;

.dapper-scrollbars--wrapper {
margin-right: 0 !important;
margin-bottom: 0 !important;
margin-bottom: 10px !important;
right: 0 !important;
bottom: 0 !important;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const VariableToolbar: FunctionComponent<OwnProps & StateProps> = ({
return (
<div className="variable-toolbar">
<SearchBar onSearch={setSearchTerm} resourceName="Variables" />
<FancyScrollbar>
<FancyScrollbar style={{marginBottom: '40px'}}>
<div className="variables-toolbar--list">
{variables
.filter(v => v.name.includes(searchTerm))
Expand Down

0 comments on commit 08d0fc2

Please sign in to comment.