Skip to content

Commit

Permalink
removed logged in
Browse files Browse the repository at this point in the history
  • Loading branch information
Beverly Nguyen authored and Beverly Nguyen committed Nov 20, 2024
1 parent a318b2d commit a8ecb57
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
6 changes: 1 addition & 5 deletions app/assets/sass/uswds/_uswds-theme-custom-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ li.linked-card:hover svg,
display: block;
}

.about-icon-list {
.icon-list {
display: flex;
width: 24px;
height: 24px;
Expand All @@ -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;
Expand Down
17 changes: 8 additions & 9 deletions app/main/views/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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():
Expand Down

0 comments on commit a8ecb57

Please sign in to comment.