aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/components/history/Stats.tsx
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-05-30 12:49:22 +0100
committerGitHub <noreply@github.com>2024-05-30 12:49:22 +0100
commit467f89c104df40904ef4c6b408507e90fe661724 (patch)
treee93697bdfa14ca6b083b0ea02c85d1d0688e0eba /ui/src/components/history/Stats.tsx
parentchore(deps): bump rusty_paseto and rusty_paserk (#2054) (diff)
downloadatuin-467f89c104df40904ef4c6b408507e90fe661724.zip
feat(ui): add login/register dialog (#2056)
Diffstat (limited to 'ui/src/components/history/Stats.tsx')
-rw-r--r--ui/src/components/history/Stats.tsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/ui/src/components/history/Stats.tsx b/ui/src/components/history/Stats.tsx
index 9e2c9a64..f399eaf0 100644
--- a/ui/src/components/history/Stats.tsx
+++ b/ui/src/components/history/Stats.tsx
@@ -13,8 +13,13 @@ import {
function renderLoading() {
return (
- <div className="flex items-center justify-center h-full">
- <PacmanLoader color="#26bd65" />
+ <div className="flex flex-col items-center justify-center h-full ">
+ <div>
+ <PacmanLoader color="#26bd65" />
+ </div>
+ <div className="block mt-4">
+ <p>Crunching the latest numbers...</p>
+ </div>
</div>
);
}