Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1203 | fixing filters padding
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Mar 25, 2022
1 parent d1e30b3 commit e715d1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/PopperGrow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {

const PopperGrow = ({open, anchorRef, handleClose, children, minWidth}) => {
return (
<Popper open={open} anchorEl={anchorRef.current} role={undefined} transition style={{zIndex: 5}}>
<Popper open={open} anchorEl={anchorRef.current} role={undefined} transition style={{zIndex: 10000}}>
{({ TransitionProps, placement }) => (
<Grow
{...TransitionProps}
Expand Down
2 changes: 1 addition & 1 deletion src/components/search/SearchFilters.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const SearchFilters = ({ filterControls, layoutControls, nested }) => {
<Tabs
value={0}
variant="scrollable"
style={{display: 'flex', alignItems: 'center', justifyContent: 'space-between', minHeight: 'auto', paddingTop: nested ? 0 : '5px'}}
style={{display: 'flex', alignItems: 'center', justifyContent: 'space-between', minHeight: 'auto', paddingTop: nested ? '5px' : '10px', paddingBottom: '5px'}}
TabIndicatorProps={{style: {display: 'none', background: 'transparent'}}}
TabScrollButtonProps={{
classes: {
Expand Down

0 comments on commit e715d1b

Please sign in to comment.