hackatime/app/javascript/pages/Home/signedIn/ActivityGraphSkeleton.svelte
Mahad Kalam ef3f36c829
Inertia migration/UI3 (#911)
* Inertia p1?

* Inertia'fied signed out homepage?

* Split up signed in page

* WIP signed in v2?

* Better signed in?

* Clean up extensions page!

* Fix currently hacking

* Better docs page?

* Docs update 2

* Clean up "What is Hackatime?" + get rid of that godawful green dev mode

* Better nav?

* Cleaner settings?

* Fix commit times

* Fix flashes + OS improv

* Setup v2

* Readd some of the syncers?

* Remove stray emdash

* Clean up Step 3

* Oops, remove .vite

* bye bye, /inertia-example

* bin/rubocop -A

* Fix docs vuln
2026-02-09 11:26:30 +00:00

14 lines
430 B
Svelte

<script lang="ts">
const squares = Array.from({ length: 365 });
</script>
<div class="w-full overflow-x-auto mt-6 pb-2.5 animate-pulse">
<div class="grid grid-rows-7 grid-flow-col gap-1 w-full lg:w-1/2">
{#each squares as _}
<div class="w-3 h-3 rounded-sm bg-darkless opacity-50"></div>
{/each}
</div>
<p class="super mt-2">
<span class="h-3 w-48 bg-darkless rounded inline-block"></span>
</p>
</div>