fix: dialog-box header height (#1530)

This commit is contained in:
James 2024-04-08 10:06:33 +08:00 committed by GitHub
parent 5c018d5195
commit c1ec610ae7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 5 deletions

View File

@ -22,6 +22,5 @@ export const tinyDialogBoxAuroraTheme = {
'ti-dialog-box-drawer-header-padding-left': 'var(--ti-common-space-6x)',
'ti-dialog-box-drawer-body-padding-right': 'var(--ti-common-space-6x)',
'ti-dialog-box-wrapper-display': 'flex',
'ti-dialog-box-wrapper-align-items': 'center',
'ti-dialog-box-header-height': 'var(--ti-common-size-10x)'
'ti-dialog-box-wrapper-align-items': 'center'
}

View File

@ -64,7 +64,6 @@
}
& &__header {
height: var(--ti-dialog-box-header-height);
padding: var(--ti-dialog-box-head-padding-top) var(--ti-dialog-box-head-padding-horizontal)
var(--ti-dialog-box-head-padding-bottom);
background: var(--ti-dialog-box-bg-color);

View File

@ -126,6 +126,4 @@
--ti-dialog-box-wrapper-display: block;
// 弹窗垂直布局(hide)
--ti-dialog-box-wrapper-align-items: normal;
// 弹窗头部高度(hide)
--ti-dialog-box-header-height: var(--ti-common-size-9x);
}