Fix table pagination styles
This commit is contained in:
parent
8cc711c85d
commit
41c1b6b067
1 changed files with 8 additions and 1 deletions
|
@ -31,6 +31,10 @@ const styles = (theme: Theme) =>
|
||||||
},
|
},
|
||||||
disabled: {},
|
disabled: {},
|
||||||
iconButton: {
|
iconButton: {
|
||||||
|
"& svg": {
|
||||||
|
border: `solid 1px #BDBDBD`,
|
||||||
|
borderRadius: "50%"
|
||||||
|
},
|
||||||
"& > span:first-of-type": {
|
"& > span:first-of-type": {
|
||||||
backgroundColor: theme.palette.background.default,
|
backgroundColor: theme.palette.background.default,
|
||||||
borderRadius: "100%",
|
borderRadius: "100%",
|
||||||
|
@ -46,7 +50,10 @@ const styles = (theme: Theme) =>
|
||||||
root: {
|
root: {
|
||||||
color: theme.palette.text.secondary,
|
color: theme.palette.text.secondary,
|
||||||
flexShrink: 0,
|
flexShrink: 0,
|
||||||
marginLeft: theme.spacing.unit * 2.5
|
margin: `0 ${theme.spacing.unit * 2.5}px`,
|
||||||
|
"& button": {
|
||||||
|
padding: 6
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue