1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix ListItem styles (#9002)

The styles for the `ListItem` component were recently broken in #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.
This commit is contained in:
Mark Stacey 2020-07-15 17:13:33 -03:00 committed by GitHub
parent a51c518d09
commit acaa648779
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@
border-bottom: 1px solid $mercury; border-bottom: 1px solid $mercury;
color: $Black-100; color: $Black-100;
display: grid; display: grid;
grid-template-columns: 0 repeat(11, 1fr); grid-template-columns: 0fr repeat(11, 1fr);
grid-template-areas: grid-template-areas:
'icon head head head head head head head right right right right' 'icon head head head head head head head right right right right'
'icon sub sub sub sub sub sub sub right right right right' 'icon sub sub sub sub sub sub sub right right right right'