Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit 2f9f7bd

Browse files
hughnssandhose
authored andcommitted
Compound doesn't have a value for bold so use semibold instead
1 parent 765dd50 commit 2f9f7bd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

templates/components/navbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="grid grid-flow-col auto-cols-max gap-4 place-items-center">
2222
{% if current_session %}
2323
<div class="text-grey-200 dark:text-grey-250 mx-2">
24-
Signed in as <span class="font-bold">{{ current_session.user.username }}</span>.
24+
Signed in as <span class="font-semibold">{{ current_session.user.username }}</span>.
2525
</div>
2626

2727
{{ button::link(text="My account", href="/account/") }}

templates/pages/account/emails/verify.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<form method="POST" class="grid grid-cols-1 gap-6 w-96 m-2">
2323
<div class="text-center">
2424
<h1 class="text-lg text-center font-medium">Email verification</h1>
25-
<p>Please enter the 6-digit code sent to: <span class="font-bold">{{ email.email }}</span></p>
25+
<p>Please enter the 6-digit code sent to: <span class="font-semibold">{{ email.email }}</span></p>
2626
</div>
2727

2828
{% if form.errors is not empty %}

templates/pages/account/password.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{{ navbar::top() }}
2121
<section class="container mx-auto grid gap-4 grid-cols-1 md:grid-cols-2 xl:grid-cols-3 p-2">
2222
<form class="rounded border-2 border-grey-50 dark:border-grey-450 p-4 grid gap-4 xl:grid-cols-2 grid-cols-1 place-content-start" method="POST">
23-
<h2 class="text-xl font-bold xl:col-span-2">Change my password</h2>
23+
<h2 class="text-xl font-semibold xl:col-span-2">Change my password</h2>
2424
<input type="hidden" name="csrf" value="{{ csrf_token }}" />
2525
{{ field::input(label="Current password", name="current_password", type="password", autocomplete="current-password", class="xl:col-span-2") }}
2626
{{ field::input(label="New password", name="new_password", type="password", autocomplete="new-password") }}

templates/pages/consent.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h1>wants to access your account</h1>
3838
<p class="my-2">
3939
{{ scope::list(scopes=grant.scope) }}
4040
</p>
41-
<p class="font-bold my-2">Make sure that you trust {{ client.client_name | default(value=client.client_id) }}.</p>
41+
<p class="font-semibold my-2">Make sure that you trust {{ client.client_name | default(value=client.client_id) }}.</p>
4242
<p>
4343
You may be sharing sensitive information with this site or app.
4444
{% if client.policy_uri or client.tos_uri %}

templates/pages/policy_violation.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<section class="flex items-center justify-center flex-1">
2121
<div class="w-96 m-2">
2222
<div class="grid grid-cols-1 gap-6">
23-
<h1 class="text-xl font-bold">The authorization request was denied the policy enforced by this service.</h1>
23+
<h1 class="text-xl font-semibold">The authorization request was denied the policy enforced by this service.</h1>
2424
<p>This might be because of the client which authored the request, the currently logged in user, or the request itself.</p>
2525
<div class="rounded-lg bg-grey-25 dark:bg-grey-450 p-2 flex items-center">
2626
<div class="bg-white rounded w-16 h-16 overflow-hidden mx-auto">
@@ -33,7 +33,7 @@ <h1 class="text-lg text-center font-medium flex-1"><a target="_blank" href="{{ c
3333

3434
<div class="rounded-lg bg-grey-25 dark:bg-grey-450 p-2 flex items-center">
3535
<div class="text-center flex-1">
36-
Logged as <span class="font-bold">{{ current_session.user.username }}</span>
36+
Logged as <span class="font-semibold">{{ current_session.user.username }}</span>
3737
</div>
3838

3939
{{ logout::button(text="Sign out", class=button::plain_error_class(), csrf_token=csrf_token, post_logout_action=action) }}

templates/pages/sso.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>wants to access your account</h1>
3333
{{ scope::list(scopes="openid urn:matrix:org.matrix.msc2967.client:api:*") }}
3434
</p>
3535

36-
<p class="font-bold my-2">Make sure that you trust it.</p>
36+
<p class="font-semibold my-2">Make sure that you trust it.</p>
3737
</div>
3838
</div>
3939
</div>

0 commit comments

Comments
 (0)