mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Improved pagination for the dark mode (#2761)
* improved pagination for the dark mode * changed the adding class pattern to make code more readable
This commit is contained in:
parent
769be2530c
commit
9fd35991dc
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ export const Pagination = function Pagination({ currentPage, count, pageChanged,
|
|||
}
|
||||
|
||||
return (
|
||||
<div className="card-footer d-flex align-items-center px-1">
|
||||
<div className={`card-footer d-flex align-items-center px-1 ${darkMode ? ' bg-transparent' : ''}`}>
|
||||
<p className={`m-0 ${darkMode ? 'text-white-50' : 'text-muted'}`}>
|
||||
Showing <span>{startingAppCount()}</span> to <span>{endingAppCount()}</span> of <span>{count}</span>
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Reference in a new issue