Skip to content

Commit

Permalink
fix: Remove background color from table footer (chatwoot#9213)
Browse files Browse the repository at this point in the history
* fix: remove bg from footer

* Update SLATable.vue

* Update app/javascript/dashboard/routes/dashboard/settings/reports/components/SLA/SLATable.vue

Co-authored-by: Sivin Varghese <[email protected]>

---------

Co-authored-by: Sivin Varghese <[email protected]>
  • Loading branch information
muhsin-k and iamsivin authored Apr 9, 2024
1 parent 626f487 commit 455a054
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<footer
v-if="isFooterVisible"
class="bg-white dark:bg-slate-900 h-12 flex items-center justify-between px-6"
class="h-12 flex items-center justify-between px-6"
>
<table-footer-results
:first-index="firstIndex"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
:current-page="currentPage"
:total-count="totalCount"
:page-size="pageSize"
class="dark:bg-slate-900 sticky bottom-0 border-t border-slate-75 dark:border-slate-700/50"
class="dark:bg-slate-900 bottom-0 border-t border-slate-75 dark:border-slate-700/50"
@page-change="onPageChange"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<div
v-if="isLoading"
class="flex items-center justify-center h-32 bg-white dark:bg-slate-900"
class="flex items-center rounded-b-xl justify-center h-32 bg-white dark:bg-slate-900"
>
<spinner />
<span>{{ $t('SLA_REPORTS.LOADING') }}</span>
Expand All @@ -40,7 +40,7 @@
</div>
<div
v-else
class="flex items-center justify-center h-32 bg-white dark:bg-slate-900"
class="flex items-center justify-center rounded-b-xl h-32 bg-white dark:bg-slate-900"
>
{{ $t('SLA_REPORTS.NO_RECORDS') }}
</div>
Expand All @@ -50,7 +50,6 @@
:current-page="currentPage"
:total-count="totalCount"
:page-size="pageSize"
class="bg-slate-25 dark:bg-slate-900 sticky bottom-0 border-none mt-4"
@page-change="onPageChange"
/>
</div>
Expand Down

0 comments on commit 455a054

Please sign in to comment.