Threshold Settings controls rebranding fixes
This commit is contained in:
parent
c72f311f27
commit
03ede6919f
|
@ -1,5 +1,7 @@
|
|||
// @flow
|
||||
import { lg, sm, boldFont, border } from '~/theme/variables'
|
||||
import {
|
||||
lg, sm, boldFont, border,
|
||||
} from '~/theme/variables'
|
||||
|
||||
export const styles = () => ({
|
||||
formContainer: {
|
||||
|
@ -12,7 +14,6 @@ export const styles = () => ({
|
|||
saveBtn: {
|
||||
marginRight: sm,
|
||||
fontWeight: boldFont,
|
||||
boxShadow: '1px 2px 10px 0 rgba(212, 212, 211, 0.59)',
|
||||
},
|
||||
controlsRow: {
|
||||
padding: lg,
|
||||
|
|
|
@ -61,7 +61,7 @@ const ThresholdSettings = ({
|
|||
owners
|
||||
</Paragraph>
|
||||
{owners.size > 1 && granted && (
|
||||
<Row align="center" className={classes.buttonRow}>
|
||||
<Row className={classes.buttonRow}>
|
||||
<Button
|
||||
color="primary"
|
||||
minWidth={120}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// @flow
|
||||
import {
|
||||
fontColor, lg, smallFontSize, md, border, secondaryText,
|
||||
fontColor, lg, smallFontSize, border, secondaryText,
|
||||
} from '~/theme/variables'
|
||||
|
||||
export const styles = () => ({
|
||||
|
@ -11,21 +11,17 @@ export const styles = () => ({
|
|||
},
|
||||
},
|
||||
container: {
|
||||
height: '100%',
|
||||
position: 'relative',
|
||||
padding: lg,
|
||||
},
|
||||
buttonRow: {
|
||||
padding: lg,
|
||||
position: 'absolute',
|
||||
bottom: '51px',
|
||||
left: 0,
|
||||
height: '51px',
|
||||
width: '100%',
|
||||
paddingRight: md,
|
||||
display: 'flex',
|
||||
justifyContent: 'flex-end',
|
||||
borderTop: `solid 1px ${border}`,
|
||||
bottom: 0,
|
||||
boxSizing: 'border-box',
|
||||
width: '100%',
|
||||
justifyContent: 'flex-end',
|
||||
borderTop: `2px solid ${border}`,
|
||||
},
|
||||
modifyBtn: {
|
||||
height: '32px',
|
||||
|
|
|
@ -63,7 +63,7 @@ export default createMuiTheme({
|
|||
borderRadius: '8px',
|
||||
},
|
||||
contained: {
|
||||
boxShadow: 'none',
|
||||
boxShadow: '1px 2px 10px 0 rgba(212, 212, 211, 0.59)',
|
||||
},
|
||||
containedPrimary: {
|
||||
backgroundColor: secondary,
|
||||
|
|
Loading…
Reference in New Issue