Skip to content

Commit

Permalink
fix: make thanks links more prominent (#1211)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredgalanis authored Sep 20, 2023
1 parent e7173bc commit 37923ad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
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

0 comments on commit 37923ad

Please sign in to comment.