Skip to content

Commit 9ef7625

Browse files
committed
fix(ui): update light mode colors
1 parent 375f5d4 commit 9ef7625

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

pages/[...slug].vue

+7-4
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
'sticky border-b -top-6 bg-orange-50 dark:bg-gray-800 w-full flex flex-row items-center justify-between px-4',
1515
!isScrolled
1616
? '!border-transparent pb-2'
17-
: 'border-white dark:border-gray-700 mb-2 py-2',
17+
: 'border-gray-300 dark:border-gray-700 mb-2 py-2',
1818
]"
1919
>
2020
<Dropdown
2121
ref="statusDropDown"
2222
:customTriggerClass="[
23-
'px-3 py-1 hover:bg-gray-700 border-gray-700 border',
23+
'px-3 py-1 hover:bg-orange-100 dark:hover:bg-gray-700 dark:border-gray-700 border',
2424
status.toLowerCase(),
2525
]"
2626
:border="false"
@@ -37,7 +37,7 @@
3737
:key="'status-' + i"
3838
@click="changeStatus(s)"
3939
:class="[
40-
'px-4 py-2 hover:cursor-pointer border-b border-gray-500 hover:bg-orange-50 dark:hover:bg-gray-500',
40+
'px-4 py-2 hover:cursor-pointer border-b border-orange-200 dark:border-gray-500 hover:bg-orange-50 dark:hover:bg-gray-500',
4141
s.toLowerCase(),
4242
]"
4343
v-text="s"
@@ -82,7 +82,10 @@
8282
:href="link.link"
8383
target="_blank"
8484
>
85-
<Card moreTransparency>
85+
<Card
86+
moreTransparency
87+
class="border-gray-300 hover:text-gray-100 transition-colors dark:border-gray-700 dark:hover:bg-gray-600 dark:bg-transparent"
88+
>
8689
<strong v-if="link.english">[Contenido en Ingles]</strong>
8790
{{ link.name }}
8891
</Card>

0 commit comments

Comments
 (0)