diff --git a/package.json b/package.json index 7f40d9a22..f370eaf01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "12.119.0-calc.10-b.8", + "version": "12.119.0-calc.10-b.9", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/components/MkModalWindow.vue b/packages/client/src/components/MkModalWindow.vue index 871c033c7..666382466 100644 --- a/packages/client/src/components/MkModalWindow.vue +++ b/packages/client/src/components/MkModalWindow.vue @@ -90,6 +90,7 @@ defineExpose({ flex-direction: column; contain: content; border-radius: var(--radius); + transition: all 0.2s; --root-margin: 24px; diff --git a/packages/client/src/components/MkTutorialDialog.vue b/packages/client/src/components/MkTutorialDialog.vue index 694b61745..39cadec47 100644 --- a/packages/client/src/components/MkTutorialDialog.vue +++ b/packages/client/src/components/MkTutorialDialog.vue @@ -2,9 +2,6 @@ @@ -167,14 +164,6 @@ const tutorial = computed({ set(value) { defaultStore.set('tutorial', value); }, }); -const filterSectionHeight = computed({ - get() { - const section = document.getElementsByClassName('tbkwesmv') as HTMLCollectionOf; - return section[0] ? section[0].offsetHeight : 0; - }, - set() {}, -}); - function close(res) { tutorial.value = -1; dialog.close();