mirror of
https://github.com/status-im/safe-react.git
synced 2025-02-16 11:36:58 +00:00
Hardcoding size large in MuiButton
This commit is contained in:
parent
725a2b27ee
commit
8d01fdb75b
@ -116,7 +116,7 @@ const UserDetails = ({
|
|||||||
<Hairline margin="xs" />
|
<Hairline margin="xs" />
|
||||||
<Row className={classes.disconnect}>
|
<Row className={classes.disconnect}>
|
||||||
<Button
|
<Button
|
||||||
size="large"
|
size="medium"
|
||||||
variant="raised"
|
variant="raised"
|
||||||
color="primary"
|
color="primary"
|
||||||
fullWidth
|
fullWidth
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// @flow
|
// @flow
|
||||||
import red from '@material-ui/core/colors/red'
|
import red from '@material-ui/core/colors/red'
|
||||||
import { createMuiTheme } from '@material-ui/core/styles'
|
import { createMuiTheme } from '@material-ui/core/styles'
|
||||||
import { primary, secondary } from './variables'
|
import { primary, secondary, md, xl } from './variables'
|
||||||
|
|
||||||
export type WithStyles = {
|
export type WithStyles = {
|
||||||
classes: Object,
|
classes: Object,
|
||||||
@ -30,6 +30,10 @@ export default createMuiTheme({
|
|||||||
containedPrimary: {
|
containedPrimary: {
|
||||||
backgroundColor: '#467ee5',
|
backgroundColor: '#467ee5',
|
||||||
},
|
},
|
||||||
|
sizeLarge: {
|
||||||
|
padding: `${md} ${xl}`,
|
||||||
|
minHeight: '52px',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
palette,
|
palette,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user