Skip to content

Commit

Permalink
Fixes text contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
mityaua committed Nov 20, 2024
1 parent a70d6af commit f856282
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/SearchResults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defineProps<{ results: number }>();
</script>

<template>
<div class="whitespace-nowrap text-sm font-normal text-gray-500 dark:text-gray-400">
<div class="whitespace-nowrap text-sm font-normal text-gray-600 dark:text-gray-400">
<span v-if="results"> {{ results }} {{ results > 1 ? "verbs" : "verb" }} </span>
</div>
</template>
2 changes: 1 addition & 1 deletion src/components/TableCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ onUnmounted(() => {
<td class="table-cell">
<div class="flex flex-wrap justify-center">
<a
class="text-base text-gray-600 duration-300 ease-in dark:text-gray-400"
target="_blank"
rel="noopener noreferrer"
class="text-base duration-300 ease-in"
aria-label="Open Reverso in new tab"
:title="linkTitle"
:href="reversoLink"
Expand Down

0 comments on commit f856282

Please sign in to comment.