Skip to content

Commit

Permalink
Updates row hover color
Browse files Browse the repository at this point in the history
  • Loading branch information
mityaua committed Jan 27, 2025
1 parent affa4bb commit 59826bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TableRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defineProps<{ rowData: IVerb; searchQuery: string }>();

<template>
<tr
class="border border-gray-200 even:bg-gray-100 hover:bg-blue-100 dark:border-gray-700 even:dark:bg-gray-800 dark:hover:bg-gray-900"
class="border border-gray-200 even:bg-gray-100 hover:bg-blue-50 dark:border-gray-700 even:dark:bg-gray-800 dark:hover:bg-gray-900"
>
<TableCell
v-for="(value, time) in rowData"
Expand Down

0 comments on commit 59826bc

Please sign in to comment.