This commit is contained in:
ThatOneCalculator 2022-11-09 11:02:04 -08:00
parent ee09619f78
commit 1b7041210a
3 changed files with 2 additions and 12 deletions

View file

@ -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",

View file

@ -90,6 +90,7 @@ defineExpose({
flex-direction: column;
contain: content;
border-radius: var(--radius);
transition: all 0.2s;
--root-margin: 24px;

View file

@ -2,9 +2,6 @@
<XModalWindow
ref="dialog"
:width="800"
:style="{
'max-height': `calc(100% - ${filterSectionHeight}px)`
}"
@close="dialog.close()"
@closed="$emit('closed')"
>
@ -167,14 +164,6 @@ const tutorial = computed({
set(value) { defaultStore.set('tutorial', value); },
});
const filterSectionHeight = computed({
get() {
const section = document.getElementsByClassName('tbkwesmv') as HTMLCollectionOf<HTMLElement>;
return section[0] ? section[0].offsetHeight : 0;
},
set() {},
});
function close(res) {
tutorial.value = -1;
dialog.close();