diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-05-30 12:49:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-30 12:49:22 +0100 |
| commit | 467f89c104df40904ef4c6b408507e90fe661724 (patch) | |
| tree | e93697bdfa14ca6b083b0ea02c85d1d0688e0eba /ui/src/components/history/Stats.tsx | |
| parent | chore(deps): bump rusty_paseto and rusty_paserk (#2054) (diff) | |
| download | atuin-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.tsx | 9 |
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> ); } |
