mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
30 lines
No EOL
532 B
Vue
30 lines
No EOL
532 B
Vue
<template>
|
|
<span class="cmd-arg"><slot/></span>
|
|
</template>
|
|
|
|
<style lang="stylus">
|
|
.cmd-arg {
|
|
font-weight: bold;
|
|
line-height: 1.75;
|
|
|
|
display: inline-block;
|
|
padding: 0 0.6rem;
|
|
|
|
background-color: $argBgPlain;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.cmd-inline .cmd-arg {
|
|
background-color: $argBgInline;
|
|
}
|
|
|
|
.cmd-block .cmd-arg {
|
|
background-color: $argBgBlock;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
props: [],
|
|
}
|
|
</script> |