Files
juls07.dev/components/content/ProseCodeInline.vue

17 lines
250 B
Vue

<template>
<code lang="js">
<slot />
</code>
</template>
<style scoped>
code {
background-color: #252425;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 400;
line-height: 1.25rem;
overflow: hidden;
padding: 3px 6px;
}
</style>