diff --git a/src/components/CommentSection.vue b/src/components/CommentSection.vue index 3ad9ff1..050edae 100644 --- a/src/components/CommentSection.vue +++ b/src/components/CommentSection.vue @@ -155,7 +155,12 @@ onMounted(() => {

{{ submitMessage }}

- ✎ 发表评论 + + + 发表评论 +

{{ error }}

@@ -287,6 +292,10 @@ onMounted(() => { gap: 10px; } +.comment-write-icon { + flex-shrink: 0; +} + .comment-form { width: 100%; background: var(--ac-bg-card); diff --git a/src/views/ArticleDetailView.vue b/src/views/ArticleDetailView.vue index 564cfee..95e5b35 100644 --- a/src/views/ArticleDetailView.vue +++ b/src/views/ArticleDetailView.vue @@ -87,19 +87,21 @@ watch(slug, load, { immediate: true })

{{ article.title }}

{{ article.summary }}

- 作者:{{ article.authorName }} - - + 作者:{{ article.authorName }} +
+ + +
{{ tag }} @@ -133,12 +135,24 @@ watch(slug, load, { immediate: true }) .detail-meta { display: flex; - gap: 20px; + flex-direction: column; + gap: 6px; color: var(--ac-text-disabled); font-size: 13px; margin: 12px 0; } +.detail-author { + color: var(--ac-text-secondary); +} + +.detail-meta-row { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 8px 20px; +} + .detail-tags { margin-bottom: 16px; }