2025-03-10 19:01:21 +08:00
|
|
|
:root {
|
|
|
|
|
--main-bg-color: rgb(247, 248, 250);
|
|
|
|
|
}
|
2025-02-27 14:38:47 +08:00
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2025-02-28 09:56:01 +08:00
|
|
|
font-family: "PingFang SC", serif;
|
|
|
|
|
}
|
2025-03-10 19:01:21 +08:00
|
|
|
body {
|
|
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
|
}
|
2025-03-14 19:03:13 +08:00
|
|
|
.test {
|
|
|
|
|
border: 1px solid red;
|
2025-03-10 19:01:21 +08:00
|
|
|
}
|
|
|
|
|
.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;
|
|
|
|
|
}
|
2025-03-11 09:46:52 +08:00
|
|
|
#Item-View {
|
2025-03-14 19:03:13 +08:00
|
|
|
@apply flex flex-col p-[20px] min-h-full overflow-auto;
|
2025-03-11 09:46:52 +08:00
|
|
|
.arco-card {
|
2025-03-14 19:03:13 +08:00
|
|
|
@apply min-h-full flex-grow flex;
|
2025-03-11 09:46:52 +08:00
|
|
|
.arco-card-body {
|
2025-03-14 19:03:13 +08:00
|
|
|
@apply min-h-full flex flex-col p-[20px] flex-grow;
|
2025-03-11 09:46:52 +08:00
|
|
|
.arco-table-container {
|
2025-03-14 19:03:13 +08:00
|
|
|
@apply min-h-full;
|
2025-03-11 09:46:52 +08:00
|
|
|
.arco-table-element {
|
2025-03-14 19:03:13 +08:00
|
|
|
@apply min-h-full;
|
2025-03-11 09:46:52 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|