From 2c5e0ef904eee3b206d46cfd231e529ec9afa433 Mon Sep 17 00:00:00 2001 From: Jake Wheeler Date: Tue, 19 Nov 2024 14:02:01 -0500 Subject: [PATCH] adjust grid size, ensure lists are full width --- src/app/products/ecr-viewer/page.tsx | 8 ++++---- src/app/products/ecr-viewer/styles.scss | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/products/ecr-viewer/page.tsx b/src/app/products/ecr-viewer/page.tsx index 44ad2a1..c283b9d 100644 --- a/src/app/products/ecr-viewer/page.tsx +++ b/src/app/products/ecr-viewer/page.tsx @@ -23,7 +23,7 @@ export default function EcrViewer() { subheader="An intuitive interface that helps epidemiologists and case investigators make better sense of eCR data, faster." /> -
+
@@ -51,7 +51,7 @@ export default function EcrViewer() {

The value to you

-
    +
    • Surfaces the most relevant information in a summary at the top of the eCR, so any staff member can quickly find the @@ -182,7 +182,7 @@ export default function EcrViewer() {

      What's expected from a pilot partner:

      -
        +
        • Work with the DIBBs team to set expectations and establish a regular meeting cadence @@ -585,7 +585,7 @@ interface GithubNavProps { function GithubNav({ version, githubHref }: GithubNavProps) { return ( -
          +

          Current version: {version} diff --git a/src/app/products/ecr-viewer/styles.scss b/src/app/products/ecr-viewer/styles.scss index 18b4e90..752bccb 100644 --- a/src/app/products/ecr-viewer/styles.scss +++ b/src/app/products/ecr-viewer/styles.scss @@ -16,3 +16,9 @@ button.usa-accordion__button { background-color: #cce0e7; // placeholder color } } + +.list__full-width { + li { + min-width: 100%; + } +}