Skip to content

Commit

Permalink
fix: dark mode color in progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
arrocke committed Nov 22, 2024
1 parent aaa45f8 commit eab574d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default function TranslationProgressBar() {
className="bg-blue-700 h-full"
/>
<div className="absolute hidden group-hover:block text-xs select-none top-0 start-0 w-full h-full px-6 md:px-8">
<div className={`h-6 w-fit leading-6 ${fitsInside ? 'text-white' : ''}`} style={{ translate: `${textOffset}px 0px` }}>
<div className={`h-6 w-fit leading-6 dark:text-gray-900 ${fitsInside ? 'text-white' : ''}`} style={{ translate: `${textOffset}px 0px` }}>
{description}
</div>
</div>
Expand Down

0 comments on commit eab574d

Please sign in to comment.