From 1b7041210a46ee198a84f3d22295903199c86e13 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 9 Nov 2022 11:02:04 -0800 Subject: [PATCH] fix --- package.json | 2 +- packages/client/src/components/MkModalWindow.vue | 1 + packages/client/src/components/MkTutorialDialog.vue | 11 ----------- 3 files changed, 2 insertions(+), 12 deletions(-) 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();