16eccad492
* enhance(frontend): シンタックスハイライトにテーマを適用できるように * Update Changelog * こっちも * テーマの値がディープマージされるように * 常にテーマ設定に準じるように * テーマ更新時に新しいshikiテーマを読み込むように
25 lines
492 B
Vue
25 lines
492 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
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>
|