第一次打包失败

This commit is contained in:
2026-07-02 18:01:56 +08:00
parent 3544208baa
commit 879d2e350a
75 changed files with 7499 additions and 2267 deletions

View File

@@ -1276,3 +1276,81 @@
margin-bottom: 0.625rem;
text-align: center;
}
/* ===== 加载动画 ===== */
.loading-area[data-v-51006ffb] {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1.875rem 0;
gap: 0.5rem;
}
.loading-spinner[data-v-51006ffb] {
width: 1.75rem;
height: 1.75rem;
border: 0.125rem solid #e8e8e8;
border-top-color: #3b86ff;
border-radius: 50%;
animation: spin-51006ffb 0.8s linear infinite;
}
@keyframes spin-51006ffb {
to {
transform: rotate(360deg);
}
}
.loading-text[data-v-51006ffb] {
font-size: 0.75rem;
color: #999;
}
/* ===== 数据库标签 ===== */
.db-tag[data-v-51006ffb] {
display: inline-block;
font-size: 0.625rem;
font-weight: 500;
padding: 0.0625rem 0.375rem;
border-radius: 0.25rem;
margin-left: 0.3125rem;
vertical-align: middle;
}
.db-tag.tag-personal[data-v-51006ffb] {
color: #3b86ff;
background: rgba(59, 134, 255, 0.08);
border: 0.03125rem solid rgba(59, 134, 255, 0.2);
}
.db-tag.tag-team[data-v-51006ffb] {
color: #67c23a;
background: rgba(103, 194, 58, 0.08);
border: 0.03125rem solid rgba(103, 194, 58, 0.2);
}
/* ===== 上传数据库弹窗 ===== */
.upload-db-hint[data-v-51006ffb] {
font-size: 0.6875rem;
color: #999;
margin-bottom: 0.625rem;
text-align: center;
}
.upload-file-area[data-v-51006ffb] {
padding: 1.25rem;
border: 0.0625rem dashed #d0d0d0;
border-radius: 0.5rem;
background: #f9fafb;
text-align: center;
margin-bottom: 0.625rem;
}
.upload-file-area[data-v-51006ffb]:active {
border-color: #3b86ff;
background: rgba(59, 134, 255, 0.03);
}
.selected-file[data-v-51006ffb] {
font-size: 0.8125rem;
color: #3b86ff;
font-weight: 500;
word-break: break-all;
}
.upload-hint[data-v-51006ffb] {
font-size: 0.75rem;
color: #bbb;
}