Improve timeline day session visuals

- Update ping animation colors in TimelineDaySession component
- Change `bg-orange-400` to `bg-orange-200` for ping animation
- Change `bg-orange-600` to `bg-zinc-200` and add `border-orange-200` for ping animation

[src/lib/components/timeline/TimelineDaySession.svelte]
- Change `bg-orange-400` to `bg-orange-200` for the ping animation
- Change `bg-orange-600` to `bg-zinc-200` and add a `border-orange-200` for the ping animation
This commit is contained in:
Kiril Videlov 2023-02-20 14:40:03 +01:00
parent 4a33245e60
commit 6d7e9df1c5

View File

@ -63,10 +63,10 @@
{#if !session.hash}
<span class="flex absolute h-3 w-3 top-0 right-0 -mt-1 -mr-1" title="Current session">
<span
class="animate-ping absolute inline-flex h-full w-full rounded-full bg-orange-400 opacity-75"
class="animate-ping absolute inline-flex h-full w-full rounded-full bg-orange-200 opacity-75"
/>
<span
class="relative inline-flex rounded-full h-3 w-3 bg-orange-600"
class="relative inline-flex rounded-full h-3 w-3 bg-zinc-200 border border-orange-200"
/>
</span>
{/if}