mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-04 20:56:44 -06:00
4a356f1ba7
* wip * Update index.d.ts * remove unnecessary codes
41 lines
1 KiB
Vue
41 lines
1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<div class="_gaps">
|
|
<div class="_panel" :class="$style.link">
|
|
<MkA to="/bubble-game">
|
|
<img src="/client-assets/drop-and-fusion/logo.png" style="display: block; max-width: 100%; max-height: 200px; margin: auto;"/>
|
|
</MkA>
|
|
</div>
|
|
<div class="_panel" :class="$style.link">
|
|
<MkA to="/reversi">
|
|
<img src="/client-assets/reversi/logo.png" style="display: block; max-width: 100%; max-height: 200px; margin: auto;"/>
|
|
</MkA>
|
|
</div>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
definePageMetadata(() => ({
|
|
title: 'Misskey Games',
|
|
icon: 'ti ti-device-gamepad',
|
|
}));
|
|
</script>
|
|
|
|
<style module>
|
|
.link:focus-within {
|
|
outline: 2px solid var(--MI_THEME-focus);
|
|
outline-offset: -2px;
|
|
}
|
|
</style>
|