Skip to content

Commit

Permalink
refine ui
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaBeiyan committed Jun 9, 2024
1 parent 1f45353 commit 8c617ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/AppLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { cover } = useAppConfig()
</script>

<template>
<div class="sm:pt-6 sm:pb-10">
<div class="sm:pt-6 sm:pb-10 pb-5">
<Html lang="zh" />
<!-- <Meta property="og:image" :content="cover"/> -->
<Link rel="shortcut icon" href="/china-legal/favicon.ico"/>
Expand Down
4 changes: 2 additions & 2 deletions components/content/LegalTimelineContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<div class="timeline-end mb-5">
<time class="font-mono">{{ date }}</time> <span v-if="author !== ''" class="font-serif ml-4">{{ author }}</span>
<div v-if="title !== '' || level !== ''">
<span v-if="titleLink === ''" class="text-lg font-black">{{ title }}</span>
<NuxtLink v-else class="text-lg font-black" :to="titleLink">{{ title }}</NuxtLink>
<span v-if="titleLink === ''" class="text-lg font-black mr-2">{{ title }}</span>
<NuxtLink v-else class="text-lg font-black mr-2" :to="titleLink">{{ title }}</NuxtLink>
<span v-if="level != ''" class="badge">{{ level }}</span>
</div>
<div>
Expand Down

0 comments on commit 8c617ec

Please sign in to comment.