feat: 添加文档管理功能并优化样式

添加文档管理功能,包括文档展示区域和API接口
新增文档相关CSS样式,优化移动端显示
更新Go模块依赖版本
This commit is contained in:
2025-12-25 00:48:13 +08:00
parent 0daedc13f0
commit d2c42ba4c2
16 changed files with 245 additions and 76 deletions

View File

@@ -67,6 +67,19 @@ p {
font-size: 14px;
}
.doc-item{
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
margin-bottom: 5px;
border: 1px solid #000;
}
.doc-item p{
margin-top: 0;
font-size: 16px;
}
.app-item {
display: flex;
justify-content: space-between;
@@ -121,6 +134,11 @@ p {
align-items: flex-start;
}
.doc-item {
flex-direction: column;
align-items: flex-start;
}
.download-btn {
margin-top: 10px;
}