fix(vue-theme): fix popconfirm css var incorrect name (#940)

This commit is contained in:
gimmyhehe 2023-11-29 09:47:54 +08:00 committed by GitHub
parent bed45da529
commit 239eb618bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
&__icon {
height: var(--ti-popconfirm-popover-icon-width);
width: var(--ti-popconfirm-popover-icon-width);
margin-right: var(--ti-popconfirm-popover-icon-margin-top);
margin-right: var(--ti-popconfirm-popover-icon-margin-right);
}
&__title {
flex: 1 1 auto;

View File

@ -24,7 +24,7 @@
// 提示弹窗图标大小
--ti-popconfirm-popover-icon-width: var(--ti-common-size-6x, 24px);
// 提示弹窗图标上侧外边距
--ti-popconfirm-popover-icon-margin-top: var(--ti-common-space-2x, 8px);
--ti-popconfirm-popover-icon-margin-right: var(--ti-common-space-2x, 8px);
// 提示弹窗底部按钮容器上侧外边距
--ti-popconfirm-popover-footer-margin-top: var(--ti-common-space-4x, 16px);
}