Skip to content

Commit fe73419

Browse files
committed
update loading indicator to use theme colors
1 parent 23e8d0c commit fe73419

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llms/extensions/gallery/ui/index.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ const GalleryPage = {
123123
</div>
124124
125125
<!-- Loading State -->
126-
<div class="h-20 flex items-center justify-center mt-8 text-gray-500" ref="loadingTrigger">
126+
<div class="h-20 flex items-center justify-center mt-8" :class="[$styles.muted]" ref="loadingTrigger">
127127
<div v-if="loading" class="flex items-center gap-3">
128-
<div class="w-2 h-2 bg-blue-500 rounded-full animate-bounce [animation-delay:-0.3s]"></div>
129-
<div class="w-2 h-2 bg-blue-500 rounded-full animate-bounce [animation-delay:-0.15s]"></div>
130-
<div class="w-2 h-2 bg-blue-500 rounded-full animate-bounce"></div>
128+
<div class="w-2 h-2 bg-[var(--assistant-bg)] rounded-full animate-bounce [animation-delay:-0.3s]"></div>
129+
<div class="w-2 h-2 bg-[var(--assistant-bg)] rounded-full animate-bounce [animation-delay:-0.15s]"></div>
130+
<div class="w-2 h-2 bg-[var(--assistant-bg)] rounded-full animate-bounce"></div>
131131
</div>
132132
<div v-else-if="allLoaded && items.length > 0" class="text-sm font-medium opacity-50">
133133
All caught up

0 commit comments

Comments
 (0)