新增文件上传页面,新增文件上传的公共组件(进度条,步骤条,上传区域)

This commit is contained in:
2025-03-31 19:53:26 +08:00
parent 65da73071d
commit 8fe88c1d15
19 changed files with 1492 additions and 32 deletions
+20 -1
View File
@@ -19,7 +19,7 @@
/* 表格内容 */
.ant-table tbody td {
@apply py-3 px-4 border-b border-gray-100;
@apply py-3 px-4 border-b border-gray-100 align-middle;
}
/* 表格行 */
@@ -63,6 +63,25 @@
@apply text-[#00684a];
}
/* 模板名称列垂直居中样式 */
.ant-table .flex.items-center {
height: 1.5rem; /* h-6 */
}
.ant-table .flex.items-center i {
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
line-height: 1;
}
.ant-table .flex.items-center span {
display: flex;
align-items: center;
line-height: 1.2;
}
@layer components {
/* 基础表格 */
.table-container {