Skip to content

Commit

Permalink
fix: text color when light mode is enable
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainAntunes committed Dec 7, 2023
1 parent 3011901 commit af71d5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/pages/home/components/timer/timer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
</button>
</div>
<span class="text-8xl font-medium">{{time | showTime }}</span>
<div *ngIf="hasLastTimeSaved" class="mt-5 text-sm p-3 rounded bg-neutral-900 w-72 mx-auto">
<div *ngIf="hasLastTimeSaved"
class="mt-5 text-sm p-3 rounded bg-gray-50 dark:bg-neutral-900 w-72 mx-auto">
The last time saved before you leave the page was {{lastTimeSaved | showTime}} <br/>
<div class="flex flex-row gap-1 text-center mt-1 justify-center">
<button class="underline cursor-pointer" (click)="resumeLastTime()">
Expand Down

0 comments on commit af71d5e

Please sign in to comment.