refactor: 优化账号管理

This commit is contained in:
2024-04-26 22:44:52 +08:00
parent bdafe43179
commit 25aa7cc17e
23 changed files with 234 additions and 310 deletions

View File

@@ -261,6 +261,16 @@
}
}
// 渐变卡片
.gradient-card {
border-radius: 8px;
border: 1px solid var(--color-neutral-3);
& > .arco-card-header {
border: none;
background: linear-gradient(180deg, rgba(232, 244, 255, 0.5), hsla(0, 0%, 100%, 0));
}
}
// 通用描述
.general-description {
position: relative;
@@ -277,21 +287,3 @@
border-radius: 0 4px 4px 0;
}
}
.arco-table-cell {
.circle {
display: inline-block;
margin-right: 4px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: rgb(var(--blue-6));
vertical-align: middle;
&.pass {
background-color: rgb(var(--green-6));
}
&.fail {
background-color: rgb(var(--red-6));
}
}
}