Compound doesn't have a value for bold so use semibold instead

This commit is contained in:
Hugh Nimmo-Smith
2023-09-01 13:45:49 +01:00
committed by Quentin Gliech
parent 75485ba97c
commit 4eea6ca1cc
6 changed files with 7 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ limitations under the License.
<section class="flex items-center justify-center flex-1">
<div class="w-96 m-2">
<div class="grid grid-cols-1 gap-6">
<h1 class="text-xl font-bold">The authorization request was denied the policy enforced by this service.</h1>
<h1 class="text-xl font-semibold">The authorization request was denied the policy enforced by this service.</h1>
<p>This might be because of the client which authored the request, the currently logged in user, or the request itself.</p>
<div class="rounded-lg bg-grey-25 dark:bg-grey-450 p-2 flex items-center">
<div class="bg-white rounded w-16 h-16 overflow-hidden mx-auto">
@@ -33,7 +33,7 @@ limitations under the License.
<div class="rounded-lg bg-grey-25 dark:bg-grey-450 p-2 flex items-center">
<div class="text-center flex-1">
Logged as <span class="font-bold">{{ current_session.user.username }}</span>
Logged as <span class="font-semibold">{{ current_session.user.username }}</span>
</div>
{{ logout::button(text="Sign out", class=button::plain_error_class(), csrf_token=csrf_token, post_logout_action=action) }}