style: set IconButton stroke colors to comet

fix: replaced edit buttons of the BooleanPropertiesTable component and
Contact Info and Terms & Conditions pages
This commit is contained in:
Liordino Neto 2020-10-28 00:36:54 -03:00 committed by Josh Harvey
parent a1cc7cad13
commit fbd075723a
5 changed files with 40 additions and 27 deletions

View file

@ -1,6 +1,8 @@
import { makeStyles, IconButton as IconB } from '@material-ui/core'
import React from 'react'
import { comet } from 'src/styling/variables'
const styles = {
label: ({ size }) => ({
width: size,
@ -12,6 +14,15 @@ const styles = {
},
'&:hover': {
backgroundColor: 'inherit'
},
'&:hover rect': {
stroke: comet
},
'&:hover polygon': {
stroke: comet
},
'&:hover path': {
stroke: comet
}
}
}