dont shrink icons in trace component

This commit is contained in:
August Skare
2018-10-22 09:05:07 +02:00
parent bf7443c985
commit 15a3c234c5

View File

@@ -39,7 +39,7 @@ function Trace(props: Props) {
completely in the dark about its exact location.
</p>
</Copy>
<NoLocation />
<Icon as={NoLocation} />
</Item>
<Item>
@@ -50,7 +50,7 @@ function Trace(props: Props) {
the failing line of code quickly becomes a daunting task.
</p>
</Copy>
<TimeConsuming />
<Icon as={TimeConsuming} />
</Item>
</List>
</Block>
@@ -72,7 +72,7 @@ function Trace(props: Props) {
from.
</p>
</Copy>
<ExactLocation />
<Icon as={ExactLocation} />
</Item>
<Item>
@@ -83,7 +83,7 @@ function Trace(props: Props) {
on linen X of contract Y", it drastically improves the developer experience.
</p>
</Copy>
<TimeSaving />
<Icon as={TimeSaving} />
</Item>
</List>
</Block>
@@ -189,4 +189,8 @@ const Copy = styled.div`
${media.small`margin-right: 2.0625rem;`};
`;
const Icon = styled.div`
flex-shrink: 0;
`;
export default withContext(Trace);