Skip to content

Commit

Permalink
fix: quick light mode fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed Nov 4, 2024
1 parent 3867b87 commit 0198f49
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions playgrounds/app/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,18 +137,20 @@ export default function Header() {
<DialogHeader>
<DialogTitle>Welcome to Giffium</DialogTitle>
<DialogDescription>
<p class="mb-8 text-center font-bold text-lg text-white">
<p class="mb-8 text-center font-bold text-lg dark:text-white">
Create and share beautiful gifs of your source code diffs.
</p>
<p class="text-white">Get started by following these steps.</p>
<ol class="list-disc list-inside pl-8 text-white">
<p class="dark:text-white">Get started by following these steps.</p>
<ol class="list-disc list-inside pl-8 dark:text-white">
<li>Enter your start and end code snippets.</li>
<li>Select the theme and language.</li>
<li>Click the Next button to preview your snippet animation.</li>
<li>Click the Generate button to generate a gif.</li>
</ol>

<p class="text-white mt-8">You can also log in with GitHub to save your snippets.</p>
<p class="dark:text-white mt-8">
You can also log in with GitHub to save your snippets.
</p>
</DialogDescription>
</DialogHeader>
</DialogContent>
Expand Down

0 comments on commit 0198f49

Please sign in to comment.