Fix table pagination styles

This commit is contained in:
Krzysztof Bialoglowicz 2019-09-03 12:55:32 +02:00
parent 8cc711c85d
commit 41c1b6b067

View file

@ -31,6 +31,10 @@ const styles = (theme: Theme) =>
},
disabled: {},
iconButton: {
"& svg": {
border: `solid 1px #BDBDBD`,
borderRadius: "50%"
},
"& > span:first-of-type": {
backgroundColor: theme.palette.background.default,
borderRadius: "100%",
@ -46,7 +50,10 @@ const styles = (theme: Theme) =>
root: {
color: theme.palette.text.secondary,
flexShrink: 0,
marginLeft: theme.spacing.unit * 2.5
margin: `0 ${theme.spacing.unit * 2.5}px`,
"& button": {
padding: 6
}
}
});