fix: Use CSS for uppercase text (#22011)

This commit is contained in:
Stewart Rand 2025-09-16 00:28:42 -03:00 committed by GitHub
parent 5fb0afb0d0
commit 0f79e0c38e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 118 additions and 123 deletions

View file

@ -469,7 +469,7 @@
{#if current.previousMemory}
<div class="absolute bottom-4 end-4 text-start text-white">
<p class="text-xs font-semibold text-gray-200">{$t('previous').toUpperCase()}</p>
<p class="uppercase text-xs font-semibold text-gray-200">{$t('previous')}</p>
<p class="text-xl">{$memoryLaneTitle(current.previousMemory)}</p>
</div>
{/if}
@ -618,7 +618,7 @@
{#if current.nextMemory}
<div class="absolute bottom-4 start-4 text-start text-white">
<p class="text-xs font-semibold text-gray-200">{$t('up_next').toUpperCase()}</p>
<p class="uppercase text-xs font-semibold text-gray-200">{$t('up_next')}</p>
<p class="text-xl">{$memoryLaneTitle(current.nextMemory)}</p>
</div>
{/if}