Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
linhaojun857 committed Jan 4, 2024
1 parent 1a72a96 commit 78bb5de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</a>
</h1>
<ob-skeleton v-else tag="h1" height="3rem" />
<p v-if="article.articleContent">{{ article.articleContent }}</p>
<p v-if="article.articleContent" class="article-content-main">{{ article.articleContent }}</p>
<ob-skeleton v-else tag="p" :count="5" height="16px" />
<div class="article-footer" v-if="article.author && article.createTime">
<div class="flex flex-row items-center">
Expand Down Expand Up @@ -137,4 +137,7 @@ export default defineComponent({
.article-title:hover {
cursor: default;
}
.article-content-main:hover {
cursor: default;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</a>
</h1>
<ob-skeleton v-else tag="h1" height="3rem" />
<p v-if="article.articleContent">{{ article.articleContent }}</p>
<p v-if="article.articleContent" class="article-content-main">{{ article.articleContent }}</p>
<ob-skeleton v-else tag="p" :count="4" height="20px" />
<div class="article-footer" v-if="article">
<div class="flex flex-row items-center">
Expand Down Expand Up @@ -137,4 +137,7 @@ export default defineComponent({
.article-title:hover {
cursor: default;
}
.article-content-main:hover {
cursor: default;
}
</style>

0 comments on commit 78bb5de

Please sign in to comment.