This commit is contained in:
2025-03-15 17:49:02 +08:00
parent da07ae2b29
commit 68d2508517
27 changed files with 1268 additions and 78 deletions

View File

@@ -1,27 +1,33 @@
:root {
--main-bg-color: rgb(247, 248, 250);
}
* {
margin: 0;
padding: 0;
font-family: "PingFang SC", serif;
}
body {
background-color: var(--main-bg-color);
}
.test {
border: 1px solid red;
}
.demo-basic { // 默认下拉框样式
padding: 5px;
width: auto;
background-color: var(--color-bg-popup);
border-radius: 4px;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
padding: 5px;
width: auto;
background-color: var(--color-bg-popup);
border-radius: 4px;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}
.arco-btn-text {
color: var(--color-text-2) !important;
}
#Item-View {
@apply flex flex-col p-[20px] min-h-full overflow-auto;
.arco-card {
@@ -29,7 +35,7 @@ body {
.arco-card-body {
@apply min-h-full flex flex-col p-[20px] flex-grow;
.arco-table-container {
@apply min-h-full;
@apply h-full;
.arco-table-element {
@apply min-h-full;
}
@@ -37,3 +43,9 @@ body {
}
}
}
.mock-card {
@apply p-[20px] bg-[#fff];
border: 1px solid var(--color-neutral-3);
border-radius: var(--border-radius-small);
box-shadow: box-shadow .2s cubic-bezier(0, 0, 1, 1);
}