style: update Delete component styles for improved UI consistency

This commit is contained in:
0xJacky
2026-03-15 21:41:53 +08:00
parent f8ef0494b0
commit 5741b9f9ff

View File

@@ -152,19 +152,25 @@ function cancel() {
<style scoped lang="less">
.delete-modal-content {
.item-info {
background-color: #fafafa;
background-color: var(--ant-color-fill-alter);
color: var(--ant-color-text);
padding: 12px;
border-radius: 6px;
border: 1px solid #e8e8e8;
border: 1px solid var(--ant-color-border-secondary);
p {
margin: 0;
line-height: 1.5;
word-break: break-word;
&:not(:last-child) {
margin-bottom: 8px;
}
}
strong {
color: var(--ant-color-text-secondary);
}
}
}
</style>