mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 05:25:56 +00:00
fix(pageingo): use singular word indicators for document information details preventing line breaking into two that looks visually uncomfortable
This commit is contained in:
parent
549f6b640c
commit
177188f21d
30
docs/.vitepress/components.d.ts
vendored
30
docs/.vitepress/components.d.ts
vendored
@ -8,19 +8,19 @@ import '@vue/runtime-core'
|
|||||||
export {}
|
export {}
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
declare module '@vue/runtime-core' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
AsideSponsors: typeof import('./theme/components/AsideSponsors.vue')['default']
|
AsideSponsors: typeof import('./theme/components/AsideSponsors.vue')['default']
|
||||||
'Bi:fileEarmarkWordFill': typeof import('~icons/bi/file-earmark-word-fill')['default']
|
'Bi:fileEarmarkWordFill': typeof import('~icons/bi/file-earmark-word-fill')['default']
|
||||||
CardLink: typeof import('./theme/components/CardLink.vue')['default']
|
CardLink: typeof import('./theme/components/CardLink.vue')['default']
|
||||||
Comment: typeof import('./theme/components/layout/Comment.vue')['default']
|
Comment: typeof import('./theme/components/layout/Comment.vue')['default']
|
||||||
Copyright: typeof import('./theme/components/Copyright.vue')['default']
|
Copyright: typeof import('./theme/components/Copyright.vue')['default']
|
||||||
'EosIcons:modifiedDate': typeof import('~icons/eos-icons/modified-date')['default']
|
'EosIcons:modifiedDate': typeof import('~icons/eos-icons/modified-date')['default']
|
||||||
Footer: typeof import('./theme/components/layout/Footer.vue')['default']
|
Footer: typeof import('./theme/components/layout/Footer.vue')['default']
|
||||||
MediumZoom: typeof import('./theme/components/MediumZoom.vue')['default']
|
MediumZoom: typeof import('./theme/components/MediumZoom.vue')['default']
|
||||||
Mermaid: typeof import('./theme/components/Mermaid.vue')['default']
|
Mermaid: typeof import('./theme/components/Mermaid.vue')['default']
|
||||||
'Octicon:feedPerson16': typeof import('~icons/octicon/feed-person16')['default']
|
'Octicon:feedPerson16': typeof import('~icons/octicon/feed-person16')['default']
|
||||||
'Ooui:clock': typeof import('~icons/ooui/clock')['default']
|
'Ooui:clock': typeof import('~icons/ooui/clock')['default']
|
||||||
PageInfo: typeof import('./theme/components/layout/PageInfo.vue')['default']
|
PageInfo: typeof import('./theme/components/layout/PageInfo.vue')['default']
|
||||||
'RadixIcons:update': typeof import('~icons/radix-icons/update')['default']
|
'RadixIcons:update': typeof import('~icons/radix-icons/update')['default']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -33,15 +33,15 @@ const timeFormNow = getFromNow(isoDatetime.value)
|
|||||||
</div>
|
</div>
|
||||||
<div v-if="publishedTime" class="flex gap-[4px] items-center">
|
<div v-if="publishedTime" class="flex gap-[4px] items-center">
|
||||||
<eos-icons:modified-date />
|
<eos-icons:modified-date />
|
||||||
Published on:<span>{{ publishedTime }}</span>
|
Published:<span>{{ publishedTime }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-[4px] items-center">
|
<div class="flex gap-[4px] items-center">
|
||||||
<radix-icons:update />
|
<radix-icons:update />
|
||||||
Last updated:<span>{{ timeFormNow }}</span>
|
Updated:<span>{{ timeFormNow }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-[4px] items-center">
|
<div class="flex gap-[4px] items-center">
|
||||||
<bi:file-earmark-word-fill />
|
<bi:file-earmark-word-fill />
|
||||||
Word count:<span>{{ words }}</span>
|
Words:<span>{{ words }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-[4px] items-center">
|
<div class="flex gap-[4px] items-center">
|
||||||
<ooui:clock />
|
<ooui:clock />
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user