Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouyanliang committed Sep 5, 2024
1 parent 783280b commit 7fd1898
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/cn/plugins-commercial.astro
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ const keywords = page.keywords_cn || page.keywords;
<div class="mt-2 plugin-box">
<h6 class="card-title mb-1">{plugin.title_cn || plugin.title}</h6>
<div class="plugin-developer text-muted mb-3">By <span>{'NocoBase' || plugin.developer}</span></div>
<p class="text-muted mb-2 plugin-overview">{plugin.description_cn || plugin.description}<br/><a href={plugin.doc_cn} target="_blank">详情</a></p>
<p class="text-muted mb-2 plugin-overview">{plugin.description_cn || plugin.description}
{plugin.doc_cn &&
<a href={plugin.doc_cn} target="_blank" style="font-size: 14px; ">详情</a>
}
</p>
<div class="plugin-footer">
{plugin.isComingSoon ? (
<span class="badge bg-soft-info plugin-type">
Expand Down

0 comments on commit 7fd1898

Please sign in to comment.