fix: corrigindo UI de letras maiúsculas
Some checks failed
Docker Build and Push / build (push) Has been cancelled

This commit is contained in:
Lucas Santana 2025-01-24 10:10:41 -03:00
parent 62594f5e62
commit 90506ca894
2 changed files with 6 additions and 4 deletions

View File

@ -26,11 +26,11 @@ export function TextCaseToggle({
'disabled:opacity-50 disabled:cursor-not-allowed',
className
)}
title={isUpperCase ? 'Mudar para minúsculas' : 'Mudar para maiúsculas'}
title={isUpperCase ? 'Mudar para minúsculas' : 'MUDAR PARA MAIÚSCULAS'}
>
<Type className="h-4 w-4" />
<span className="text-sm font-medium select-none">
{isUpperCase ? 'Aa' : 'AA'}
{isUpperCase ? 'Aa: Ativar Minúsculas' : 'AA: ATIVAR MAIÚSCULAS'}
</span>
{isLoading && (
<Loader2 className="h-4 w-4 animate-spin" />

View File

@ -643,13 +643,15 @@ export function StoryPage() {
<Share2 className="h-5 w-5" />
Compartilhar
</button>
<button
{
/* <button
onClick={() => setIsPlaying(!isPlaying)}
className="flex items-center gap-2 px-4 py-2 text-gray-600 hover:text-gray-900"
>
<Volume2 className="h-5 w-5" />
{isPlaying ? 'Pausar' : 'Ouvir'}
</button>
</button>
*/}
</div>
</div>