32 lines
562 B
Vue
32 lines
562 B
Vue
<template>
|
|
<view class="genealogy-page-background">
|
|
<image
|
|
class="genealogy-page-background__art"
|
|
src="/static/assets/modules/genealogy/opaque/genealogy-page-background-long.png"
|
|
mode="widthFix"
|
|
/>
|
|
</view>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.genealogy-page-background {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
background: #e7ded1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.genealogy-page-background__art {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
display: block;
|
|
width: 100%;
|
|
opacity: 0.28;
|
|
}
|
|
|
|
</style>
|