This commit is contained in:
okbel
2018-05-03 15:57:00 -03:00
parent 467aecf0ee
commit 140ef3eb5e
3 changed files with 6 additions and 1 deletions
@@ -62,6 +62,7 @@
flex: 1;
height: 100%;
box-sizing: border-box;
padding: 0 6px;
}
.detailItemMessage {
@@ -4,6 +4,10 @@
padding: 6px;
z-index: 10;
> .icon {
font-size: 25px;
}
&.current {
color: rgba(0, 205, 115, 0.3);
}
@@ -11,7 +11,7 @@ const CheckItem = ({ current = false, completed = false }) => (
[styles.completed]: completed,
})}
>
<Icon name="check_circle" />
<Icon name="check_circle" className={styles.icon} />
</span>
);