forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request meshery#9021 from captain-Akshay/filter-table
fixed the filter-dropdown component
- Loading branch information
Showing
2 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
import { makeStyles } from "@material-ui/core/styles"; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
|
||
const useStyles = makeStyles((theme) => ({ | ||
toolWrapper : { | ||
marginBottom : "3rem", | ||
display : "flex", | ||
justifyContent : "space-between", | ||
backgroundColor : theme.palette.type === 'dark' ? theme.palette.secondary.toolbarBg2 : theme.palette.secondary.toolbarBg1, | ||
boxShadow : " 0px 2px 4px -1px rgba(0,0,0,0.2)", | ||
height : "4rem", | ||
padding : "0.68rem", | ||
borderRadius : "0.5rem", | ||
position : "relative", | ||
zIndex : "1", | ||
toolWrapper: { | ||
marginBottom: '3rem', | ||
display: 'flex', | ||
justifyContent: 'space-between', | ||
backgroundColor: | ||
theme.palette.type === 'dark' | ||
? theme.palette.secondary.toolbarBg2 | ||
: theme.palette.secondary.toolbarBg1, | ||
boxShadow: ' 0px 2px 4px -1px rgba(0,0,0,0.2)', | ||
height: '4rem', | ||
padding: '0.68rem', | ||
borderRadius: '0.5rem', | ||
position: 'relative', | ||
zIndex: '125', | ||
}, | ||
// Define other styles as needed | ||
})); | ||
|
||
export default useStyles; | ||
export default useStyles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters