Skip to content

Commit dbd1df1

Browse files
committed
🚧 dark mode fixes
1 parent 1f782c9 commit dbd1df1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

i18n/en-US/components/Header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ home:
33
href: "/"
44
links:
55
- title: "Documentation"
6-
href: "/documentation"
6+
href: "/getting-started"
77
- title: "Components"
88
href: "/components"
99
- title: "Contributors"

i18n/pt-BR/components/Header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ home:
33
href: "/pt-br"
44
links:
55
- title: "Documentação"
6-
href: "/pt-br/documentacao"
6+
href: "/pt-br/comecando"
77
- title: "Componentes"
88
href: "/pt-br/componentes"
99
- title: "Contribuidores"

src/Article.njs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Article extends Nullstack {
7272

7373
renderLink({ title, href }) {
7474
return (
75-
<a href={href} class="text-gray-500 dark:text-gray-300 hover:text-pink-600 block w-full" onclick={{expanded: true}}> {title} </a>
75+
<a href={href} class="text-gray-500 dark:text-gray-300 hover:text-pink-600 dark:hover:text-pink-400 block w-full" onclick={{expanded: true}}> {title} </a>
7676
)
7777
}
7878

src/Home.njs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Home extends Translatable {
2525
<span class={`text-pink-600 ${page.locale !== 'pt-BR' ? 'text-3xl sm:text-5xl' : 'text-4xl sm:text-6xl'} font-light block sm:mb-3`}>
2626
{this.i18n.hero.subHeading}
2727
</span>
28-
<span class="text-gray-900 text-2xl sm:text-4xl font-light block">
28+
<span class="text-2xl sm:text-4xl font-light block">
2929
{this.i18n.hero.tagline}
3030
</span>
3131
</h1>

0 commit comments

Comments
 (0)