From 3b20f7a1718d895bb7c53fb5310c4efc75b65051 Mon Sep 17 00:00:00 2001 From: Kirkland Brown Date: Mon, 17 Jun 2024 16:22:16 -0400 Subject: [PATCH 1/2] SSR-1362 - Updated line-height of h5 header to 32px for all modals --- src/digital-components/modal/modal.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue index ef8ada82..03b67475 100644 --- a/src/digital-components/modal/modal.vue +++ b/src/digital-components/modal/modal.vue @@ -223,6 +223,7 @@ export default { } h5 { text-align: center; + line-height: 32px; } } } From 848af3ee13a7c20e11fc9cd6736c662ff58a9f73 Mon Sep 17 00:00:00 2001 From: Kirkland Brown Date: Tue, 18 Jun 2024 12:31:23 -0400 Subject: [PATCH 2/2] SSR-1362 - Updated line-height of h5 header to 2rem to match the required 32px --- src/digital-components/modal/modal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue index 03b67475..de565b08 100644 --- a/src/digital-components/modal/modal.vue +++ b/src/digital-components/modal/modal.vue @@ -223,7 +223,7 @@ export default { } h5 { text-align: center; - line-height: 32px; + line-height: 2rem; } } }