diff --git a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss index da5d77bf2..377e28705 100644 --- a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss +++ b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss @@ -898,20 +898,13 @@ li.linked-card:hover svg, display: block; } -.about-icon-list { - display: flex; +.icon-list { width: 24px; height: 24px; padding: 2px 1px; - justify-content: center; - align-items: center; margin-right: 4px; } -.usa-icon-list__content{ - padding-left: 0; -} - .indented-paragraph { margin-left: calc(24px + 4px); margin-top: 4px; diff --git a/app/main/views/index.py b/app/main/views/index.py index 974e29211..9b78dcc98 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -295,6 +295,14 @@ def about_notify(): ) +@main.route("/about/join-notify") +def join_notify(): + return render_template( + "views/about/join-notify.html", + navigation_links=about_notify_nav(), + ) + + @main.route("/using-notify/guidance/create-and-send-messages") @user_is_logged_in def create_and_send_messages(): diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index b9fb7f8ae..79c5c9be8 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -113,4 +113,8 @@ def about_notify_nav(): "name": "About notify", "link": "main.about_notify", }, + { + "name": "Join Notify", + "link": "main.join_notify", + }, ] diff --git a/app/templates/views/about/about.html b/app/templates/views/about/about.html index 39dfce671..0ca7465d2 100644 --- a/app/templates/views/about/about.html +++ b/app/templates/views/about/about.html @@ -56,9 +56,9 @@