Skip to content

Commit

Permalink
Fix ListItem styles (MetaMask#9002)
Browse files Browse the repository at this point in the history
The styles for the `ListItem` component were recently broken in MetaMask#8989
because of a change made by `stylelint`. It incorrectly removed the
`fr` unit because of the `length-zero-no-unit` rule. This was a bug
that has since been fixed in `stylelint`; it should have left the `fr`
unit in this case.
  • Loading branch information
Gudahtt authored Jul 15, 2020
1 parent a51c518 commit acaa648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/components/ui/list-item/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
border-bottom: 1px solid $mercury;
color: $Black-100;
display: grid;
grid-template-columns: 0 repeat(11, 1fr);
grid-template-columns: 0fr repeat(11, 1fr);
grid-template-areas:
'icon head head head head head head head right right right right'
'icon sub sub sub sub sub sub sub right right right right'
Expand Down

0 comments on commit acaa648

Please sign in to comment.