Skip to content

Commit c9e70a8

Browse files
authored
Merge branch 'main' into opengraph
2 parents 966b31b + 4743a25 commit c9e70a8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pages/[...slug].vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
<div v-if="content" :class="['fixed top-0 h-screen', sidebarClass]">
77
<div
88
id="sidebar"
9-
class="scroll-smooth prose dark:prose-invert max-w-full flex overflow-y-auto overflow-x-hidden h-full w-full flex-col items-center p-4 focus:outline-0 sm:p-6 bg-orange-50 dark:bg-gray-800"
9+
class="scroll-smooth prose dark:prose-invert max-w-full flex overflow-y-auto overflow-x-hidden h-full w-full flex-col items-center p-4 focus:outline-0 sm:p-6 bg-orange-50 dark:bg-[#131313]/90 border-l-2 dark:backdrop-blur-xl border-black dark:border-0"
1010
@scroll="onScroll"
1111
>
1212
<div
1313
:class="[
14-
'sticky border-b -top-6 bg-orange-50 dark:bg-gray-800 w-full flex flex-row items-center justify-between px-4',
14+
'sticky border-b -top-6 bg-orange-50 dark:bg-[#131313]/90 w-full flex flex-row items-center justify-between px-4',
1515
!isScrolled
1616
? '!border-transparent pb-2'
17-
: 'border-gray-300 dark:border-gray-700 mb-2 py-2',
17+
: 'border-gray-300 dark:border-white mb-2 py-2 dark:backdrop-blur-2xl',
1818
]"
1919
>
2020
<Dropdown
2121
ref="statusDropDown"
2222
:customTriggerClass="
23-
'px-3 py-1 hover:bg-orange-100 dark:hover:bg-gray-700 dark:border-gray-700 border ' + status.toLowerCase()"
23+
'px-3 py-1 hover:bg-orange-100 dark:hover:bg-black dark:border-white border' + status.toLowerCase()"
2424
:border="false"
2525
>
2626
<!-- trigger element -->
@@ -29,13 +29,13 @@
2929
</template>
3030

3131
<!-- contents display in dropdown -->
32-
<ul class="flex flex-col bg-orange-100 dark:bg-gray-600">
32+
<ul class="flex flex-col bg-orange-100 dark:bg-[#131313]">
3333
<li
3434
v-for="(s, i) in allStatus"
3535
:key="'status-' + i"
3636
@click="changeStatus(s)"
3737
:class="[
38-
'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',
38+
'px-4 py-2 hover:cursor-pointer border-b border-orange-200 dark:border-gray-500 hover:bg-orange-50 dark:hover:bg-black',
3939
s.toLowerCase(),
4040
]"
4141
v-text="s"
@@ -82,7 +82,7 @@
8282
>
8383
<Card
8484
moreTransparency
85-
class="border-gray-300 hover:text-gray-100 transition-colors dark:border-gray-700 dark:hover:bg-gray-600 dark:bg-transparent"
85+
class="border-gray-300 hover:text-gray-100 transition-colors dark:border-white dark:hover:bg-black dark:bg-transparent"
8686
>
8787
<strong v-if="link.english">[Contenido en Ingles]</strong>
8888
{{ link.name }}

0 commit comments

Comments
 (0)