Files
xl-root/src/scss/global.scss
2025-03-11 09:46:52 +08:00

41 lines
804 B
SCSS

: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;
}
#Item-View {
.arco-card {
@apply h-full;
.arco-card-body {
@apply h-full flex flex-col;
.arco-table-container {
@apply h-full;
.arco-table-element {
@apply h-full;
}
}
}
}
}