Skip to content

Commit

Permalink
style: improve contrast for loading spinners
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprobst committed Feb 6, 2024
1 parent f56300b commit 61d9c37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/data-view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const entities = computed(() => {
<Centered>{{ t("DataView.nothing-found") }}</Centered>
</div>

<Centered v-if="isLoading">
<Centered v-if="isLoading" class="mix-blend-difference">
<LoadingIndicator size="lg" />
</Centered>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/entities/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const relationsByType = computed(() => {
</template>

<template v-else-if="isLoading">
<Centered class="opacity-50">
<Centered class="opacity-50 mix-blend-difference">
<LoadingIndicator />
</Centered>
</template>
Expand Down

0 comments on commit 61d9c37

Please sign in to comment.