1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-04 17:02:09 -06:00
paricafe/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-31 00:22:20 +09:00
<template>
<div v-if="instance" :class="$style.root" :style="{ backgroundImage: `url(${ instance.backgroundImageUrl })` }"></div>
2020-12-31 00:22:20 +09:00
</template>
<script lang="ts" setup>
import { instance } from '@/instance.js';
2020-12-31 00:22:20 +09:00
</script>
2023-01-15 09:14:17 +09:00
<style lang="scss" module>
.root {
2020-12-31 00:22:20 +09:00
background-position: center;
background-size: cover;
}
</style>