2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
2024-02-13 16:59:27 +01:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
<template>
|
2024-05-01 06:51:00 +02:00
|
|
|
<div v-if="instance" :class="$style.root" :style="{ backgroundImage: `url(${ instance.backgroundImageUrl })` }"></div>
|
2020-12-30 16:22:20 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
<script lang="ts" setup>
|
2024-05-01 06:51:00 +02:00
|
|
|
import { instance } from '@/instance.js';
|
2020-12-30 16:22:20 +01:00
|
|
|
</script>
|
|
|
|
|
2023-01-15 01:14:17 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-12-30 16:22:20 +01:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
</style>
|