fix(frontend): minimum uiが表示できない

This commit is contained in:
syuilo 2025-03-20 12:58:18 +09:00
parent 91670caca0
commit 596e517f77
1 changed files with 3 additions and 6 deletions

View File

@ -5,9 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div :class="$style.root">
<div style="height: 100%;">
<RouterView/>
</div>
<RouterView/>
<XCommon/>
</div>
@ -39,12 +37,11 @@ provideMetadataReceiver((metadataGetter) => {
}
});
provideReactiveMetadata(pageMetadata);
document.documentElement.style.overflowY = 'scroll';
</script>
<style lang="scss" module>
.root {
min-height: 100dvh;
position: relative;
height: 100dvh;
}
</style>