Skip to content

Commit 1e03094

Browse files
authored
Fix elevate view link styling (#4648)
<!-- Thanks for contributing to Hypha! Please ensure your contributions pass all necessary linting/testing and that the appropriate documentation has been updated. --> <!-- Describe briefly what your pull request changes. If this is resolving an issue, please specify below via "Fixes #<Github Issue ID>" --> The `Having Problems?` prompts in the elevate view didn't indicate any of the options were clickable, this fix adds link styling to them
1 parent 4a20f09 commit 1e03094

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hypha/apply/users/templates/elevate/elevate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h2 class="text-2xl text-center">{% trans "Confirm access" %}</h2>
5151
<ul class="list-disc ms-4">
5252
<li>
5353
<a
54-
class="m-0"
54+
class="m-0 link"
5555
type="submit"
5656
hx-post="{% url 'users:elevate_send_confirm_access_email' %}{% if request.GET.next %}?next={{request.GET.next}}{% endif %}"
5757
hx-target="#section-form"

hypha/apply/users/templates/users/partials/confirmation_code_sent.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<ul class="list-disc ms-4">
6161
<li>
6262
<a
63-
class="m-0"
63+
class="m-0 link"
6464
type="submit"
6565
hx-boost="true"
6666
href="{% url 'users:elevate' %}{% if redirect_url %}?next={{ redirect_url }}{% endif %}"

0 commit comments

Comments
 (0)