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

@ -9,7 +9,7 @@ import * as Yup from 'yup'
import ErrorMessage from 'src/components/ErrorMessage'
import PromptWhenDirty from 'src/components/PromptWhenDirty'
import { Link } from 'src/components/buttons'
import { Link, IconButton } from 'src/components/buttons'
import { Switch } from 'src/components/inputs'
import { TextInput } from 'src/components/inputs/formik'
import { H4, Info2, Info3, Label2, Label3 } from 'src/components/typography'
@ -190,11 +190,11 @@ const TermsConditions = () => {
<div className={classes.header}>
<Info2>Info card</Info2>
{!editing && (
<div className={classes.transparentButton}>
<button onClick={() => setEditing(true)}>
<EditIcon />
</button>
</div>
<IconButton
className={classes.transparentButton}
onClick={() => setEditing(true)}>
<EditIcon />
</IconButton>
)}
</div>
<Formik