This commit is contained in:
2023-09-16 13:08:05 +02:00
parent c1f00da176
commit 6580924bbe
2 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ const { sortedArray, headerProps } = useSort(computed(() => props.items
<input type="text" class="w-96" v-model="filter" > <input type="text" class="w-96" v-model="filter" >
</div> </div>
<div class="end"> <div class="end">
<button class="flex" @click="$emit('relaodAll')"><ArrowPathIcon class="h-6 w-6 me-2" />Reload all</button> <button class="flex" @click="$emit('relaodAll')"><ArrowPathIcon class="stroke-slate-100 sh-6 w-6 me-2" />Reload all</button>
</div> </div>
</div> </div>
</div> </div>
@@ -87,7 +87,7 @@ const { sortedArray, headerProps } = useSort(computed(() => props.items
<td class="text-right">{{ formatIsk(r.q3) }}</td> <td class="text-right">{{ formatIsk(r.q3) }}</td>
<td class="text-right">{{ percentFormater.format(r.percent) }}</td> <td class="text-right">{{ percentFormater.format(r.percent) }}</td>
<td class="text-right"> <td class="text-right">
<button class="btn-icon" @click="$emit('relaod', r.type)"><ArrowPathIcon class="hover:stroke-slate-400"/></button> <button class="btn-icon" @click="$emit('relaod', r.type)"><ArrowPathIcon class="stroke-slate-100 hover:stroke-slate-400"/></button>
</td> </td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -42,7 +42,7 @@
border-radius: 5px; border-radius: 5px;
} }
.btn-icon { .btn-icon {
@apply p-0 border-none bg-transparent hover:text-slate-400; @apply p-0 border-none bg-transparent hover:text-slate-400 hover:bg-transparent;
> svg { > svg {
@apply w-6 h-6 hover:text-slate-400; @apply w-6 h-6 hover:text-slate-400;
} }