1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-04-12 14:39:36 -05:00

fix(frontend): fix PageWithAnimBg style

This commit is contained in:
syuilo 2025-04-01 13:28:13 +09:00
parent 500a5615f0
commit 165c7993e6

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div>
<MkAnimBg style="position: absolute;"/>
<div class="_pageScrollable" style="position: absolute; top: 0; width: 100%; height: 100%;">
<div class="_pageScrollable" :class="$style.body">
<slot></slot>
</div>
</div>
@ -17,5 +17,13 @@ import MkAnimBg from '@/components/MkAnimBg.vue';
</script>
<style lang="scss" module>
.body {
position: absolute;
top: 0;
width: 100%;
height: 100%;
// _pageScrollable
background: transparent !important;
}
</style>