This commit is contained in:
2025-03-10 19:01:21 +08:00
parent 94644d0601
commit 31a2667f8b
28 changed files with 1370 additions and 57 deletions

View File

@@ -1,5 +1,26 @@
:root {
--main-bg-color: rgb(247, 248, 250);
}
* {
margin: 0;
padding: 0;
font-family: "PingFang SC", serif;
}
body {
background-color: var(--main-bg-color);
}
#Item-View {
.arco-card-body {
@apply p-[20px];
}
}
.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);
}
.arco-btn-text {
color: var(--color-text-2) !important;
}