mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-30 00:13:06 +00:00
c1514ce91d
Fix #13290
25 lines
481 B
Vue
25 lines
481 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(--bg);
|
|
padding: .1em;
|
|
border-radius: .3em;
|
|
}
|
|
</style>
|