Skip to content

Commit

Permalink
Fix theme table
Browse files Browse the repository at this point in the history
  • Loading branch information
NVaissaud committed Jan 23, 2025
1 parent 601836a commit 38a32b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/base/Table.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="max-w-full" :class="[{ 'overflow-x-auto rounded-lg': overflow }]">
<div class="max-w-full overflow-x-auto">
<table class="min-w-full divide-y divide-gray-100 p-3">
<slot />
</table>
Expand Down
2 changes: 1 addition & 1 deletion components/base/TableRowCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class=""><slot /></div>
<div
class="opacity-0 bg-gradient-to-r from-transparent via-[#EDEDED] via-[10%] from-[0%] to-[#EDEDED] to-[10%] absolute right-0 top-0 bottom-0 p-4 pl-6 group-hover/cell:opacity-100 transition-opacity"
:class="[{ ' via-[#E8EDFF] to-[#E8EDFF]': isSelected }]"
:class="[{ '!via-[#E8EDFF] !to-[#E8EDFF]': isSelected }]"
>
<div class="flex items-center justify-center h-full">
<DsfrButton
Expand Down
2 changes: 1 addition & 1 deletion pages/admin/contenus/domaines/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ watch(
</div>
</BaseTableRowCell>
<BaseTableRowCell>
<div class="text-[#161616] text-xl font-bold">
<div class="text-[#161616] text-base font-bold">
{{ domaine.places_left }}
</div>
<div>bénévoles recherchés</div>
Expand Down

0 comments on commit 38a32b6

Please sign in to comment.