mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-16 20:43:04 +01:00
4a356f1ba7
* wip * Update index.d.ts * remove unnecessary codes
25 lines
490 B
Vue
25 lines
490 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<code :class="$style.root">{{ code }}</code>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const props = defineProps<{
|
|
code: string;
|
|
}>();
|
|
</script>
|
|
|
|
<style module lang="scss">
|
|
.root {
|
|
display: inline-block;
|
|
font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
|
|
overflow-wrap: anywhere;
|
|
background: var(--MI_THEME-bg);
|
|
padding: .1em;
|
|
border-radius: .3em;
|
|
}
|
|
</style>
|