hippofish/packages/frontend/src/components/MkFeaturedPhotos.vue

20 lines
422 B
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
2020-12-30 16:22:20 +01:00
<template>
<div v-if="instance" :class="$style.root" :style="{ backgroundImage: `url(${ instance.backgroundImageUrl })` }"></div>
2020-12-30 16:22:20 +01:00
</template>
<script lang="ts" setup>
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>