Skip to content

Commit ee9538b

Browse files
authored
Fix: URL color on homepage in dark-mode (#1286)
* Fix: URL color on homepage in darkmode * Fix prettier error
1 parent 54ae0bf commit ee9538b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pages/index.page.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -579,27 +579,30 @@ const Home = (props: any) => {
579579
If you ❤️ JSON Schema consider becoming a{' '}
580580
<a
581581
href='https://json-schema.org/overview/sponsors'
582-
className='border-b border-black'
582+
className='border-b border-black dark:border-white'
583583
>
584584
sponsor
585585
</a>
586586
, a{' '}
587587
<a
588588
href='https://json-schema.org/overview/sponsors#benefits-of-being-an-individual-backer'
589-
className='border-b border-black '
589+
className='border-b border-black dark:border-white'
590590
>
591591
backer
592592
</a>{' '}
593593
or hiring our{' '}
594-
<a href='/pro-help' className='border-b border-black'>
594+
<a
595+
href='/pro-help'
596+
className='border-b border-black dark:border-white'
597+
>
595598
pro services
596599
</a>
597600
.
598601
</p>
599602
<p className='w-5/6 lg:w-3/5 mx-auto'>
600603
<a
601604
href='https://opencollective.com/json-schema'
602-
className='border-b border-black'
605+
className='border-b border-black dark:border-white'
603606
>
604607
Support us!
605608
</a>
@@ -886,7 +889,7 @@ for Accounting integrations'
886889
<br />
887890
<a
888891
href='mailto:[email protected]'
889-
className='border-b border-black'
892+
className='border-b border-black dark:border-white'
890893
>
891894
Email us
892895
</a>{' '}

0 commit comments

Comments
 (0)