Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make thanks links more prominent #1211

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions app/templates/thanks.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
<h1 data-test-workflow-thanks-thank-you>Thank you!</h1>
<p>
A detailed summary of the submission and its current status can be seen
<LinkTo @route="submissions.detail" @model={{this.submission}} class="btn-link">here</LinkTo>. A list of all
submissions associated with your account can be found on the
<LinkTo @route="submissions.index" class="btn-link" data-test-workflow-thanks-link-to-submissions>Submissions page</LinkTo>.
<LinkTo @route="submissions.detail" @model={{this.submission}} class="btn-link-underlined">here</LinkTo>. A list of
all submissions associated with your account can be found on the
<LinkTo
@route="submissions.index"
class="btn-link-underlined"
data-test-workflow-thanks-link-to-submissions
>Submissions page</LinkTo>.
</p>
{{#if this.faqUrl}}
<p>
Expand Down
4 changes: 4 additions & 0 deletions public/branding.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ a,
.btn-link {
color: var(--primary-500);
}
.btn-link-underlined {
color: var(--primary-500);
text-decoration: underline;
}
a:hover,
.btn-link:hover {
color: var(--primary-600);
Expand Down