From 3d5f83ef921ffde1ad97fa6354c641a982cb07b6 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 15 Jul 2020 14:23:05 -0300 Subject: [PATCH] Fix `ListItem` styles 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. --- ui/app/components/ui/list-item/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/ui/list-item/index.scss b/ui/app/components/ui/list-item/index.scss index 9f8a6a5bc482..a26efcb4ca73 100644 --- a/ui/app/components/ui/list-item/index.scss +++ b/ui/app/components/ui/list-item/index.scss @@ -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'