diff --git a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss index da5d77bf2..cec48e82b 100644 --- a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss +++ b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss @@ -898,7 +898,7 @@ li.linked-card:hover svg, display: block; } -.about-icon-list { +.icon-list { display: flex; width: 24px; height: 24px; @@ -908,10 +908,6 @@ li.linked-card:hover svg, 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 c677b3524..7050adcde 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -275,15 +275,6 @@ def benchmark_performance(): ) -@main.route("/about/why-text-messaging") -@user_is_logged_in -def why_text_messaging(): - return render_template( - "views/about/why-text-messaging.html", - navigation_links=about_notify_nav(), - ) - - @main.route("/using-notify/guidance") @main.route("/guides/using-notify/guidance") @user_is_logged_in @@ -305,6 +296,14 @@ def about_notify(): ) +@main.route("/about/why-text-messaging") +def why_text_messaging(): + return render_template( + "views/about/why-text-messaging.html", + navigation_links=about_notify_nav(), + ) + + @main.route("/using-notify/guidance/create-and-send-messages") @user_is_logged_in def create_and_send_messages():