From 757ed7c0f7966180ee64a74d7374841e522988d7 Mon Sep 17 00:00:00 2001 From: gina-yamada Date: Mon, 15 May 2023 09:45:42 -0600 Subject: [PATCH 1/4] LG-7521 Edit css of last child in list --- .../components/location-collection-item.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/javascript/packages/document-capture/components/location-collection-item.scss b/app/javascript/packages/document-capture/components/location-collection-item.scss index aefbc37d3e9..edef751e54a 100644 --- a/app/javascript/packages/document-capture/components/location-collection-item.scss +++ b/app/javascript/packages/document-capture/components/location-collection-item.scss @@ -13,3 +13,8 @@ padding-bottom: 1rem; border-color: color('primary-light'); } + +.location-collection-item:last-child { + border-bottom-style: none; + padding-bottom: 0; +} \ No newline at end of file From 5008598cb0ca78e2ab400ef48871990d7ff88833 Mon Sep 17 00:00:00 2001 From: gina-yamada Date: Wed, 17 May 2023 08:25:36 -0600 Subject: [PATCH 2/4] changelog: User-Facing Improvements, In-person proofing, Remove double line on Post Office search results view From c3f2c229c81a7df9d6a8d9778647de6a175108ba Mon Sep 17 00:00:00 2001 From: gina-yamada Date: Wed, 17 May 2023 08:58:17 -0600 Subject: [PATCH 3/4] LG-7521 Fix lint issue --- .../document-capture/components/location-collection-item.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/packages/document-capture/components/location-collection-item.scss b/app/javascript/packages/document-capture/components/location-collection-item.scss index edef751e54a..30eb864f12f 100644 --- a/app/javascript/packages/document-capture/components/location-collection-item.scss +++ b/app/javascript/packages/document-capture/components/location-collection-item.scss @@ -17,4 +17,4 @@ .location-collection-item:last-child { border-bottom-style: none; padding-bottom: 0; -} \ No newline at end of file +} From 998a853d2f4543e92f544a1a6ab0c8d441227130 Mon Sep 17 00:00:00 2001 From: gina-yamada <125507397+gina-yamada@users.noreply.github.com> Date: Wed, 17 May 2023 09:14:39 -0600 Subject: [PATCH 4/4] LG-7521: Nest sass syntax Co-authored-by: Andrew Duthie --- .../components/location-collection-item.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/javascript/packages/document-capture/components/location-collection-item.scss b/app/javascript/packages/document-capture/components/location-collection-item.scss index 30eb864f12f..4b8605bbe2e 100644 --- a/app/javascript/packages/document-capture/components/location-collection-item.scss +++ b/app/javascript/packages/document-capture/components/location-collection-item.scss @@ -12,9 +12,9 @@ margin-top: 1rem; padding-bottom: 1rem; border-color: color('primary-light'); -} -.location-collection-item:last-child { - border-bottom-style: none; - padding-bottom: 0; + &:last-child { + border-bottom-style: none; + padding-bottom: 0; + } }