style(admin): 优化评论管理页面样式

- 调整页面头部和搜索栏的样式,包括减少底部外边距和调整内边距
- 这些更改旨在提高页面的视觉一致性和用户体验
This commit is contained in:
ikmkj
2025-07-26 23:04:15 +08:00
parent 817c7b2238
commit aea643c270

View File

@@ -291,9 +291,9 @@ onMounted(() => {
} }
.page-header { .page-header {
margin-bottom: 20px; margin-bottom: 15px;
background: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.9);
padding: 15px; padding: 10px 15px;
border-radius: 12px; border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
} }
@@ -305,11 +305,11 @@ onMounted(() => {
.search-bar { .search-bar {
display: flex; display: flex;
margin-bottom: 20px; margin-bottom: 15px;
gap: 10px; gap: 10px;
align-items: center; align-items: center;
background: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.9);
padding: 15px; padding: 10px 15px;
border-radius: 12px; border-radius: 12px;
} }