We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8506ba2 commit a4716b6Copy full SHA for a4716b6
frontend/src/lib/components/Footer.svelte
@@ -11,13 +11,13 @@
11
12
<footer class="w-full pb-2 px-6 text-sm">
13
<div
14
- class="group flex items-center justify-center gap-3 text-ctp-text/35 transition-colors hover:text-ctp-subtext1"
+ class="group flex flex-col sm:flex-row items-center justify-center sm:gap-3 text-ctp-text/35 transition-colors hover:text-ctp-subtext1 text-center"
15
>
16
{#if lastUpdatedAt}
17
- <span class="font-mono" title={lastUpdatedAt.toLocaleString()}>
+ <span class="font-mono text-balance" title={lastUpdatedAt.toLocaleString()}>
18
data updated <RelativeTime datetime={lastUpdatedAt} />
19
</span>
20
- <span>•</span>
+ <span class="hidden sm:inline">•</span>
21
{/if}
22
{#if commitHash !== 'dev'}
23
<a
0 commit comments