mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
23 lines
No EOL
565 B
Vue
23 lines
No EOL
565 B
Vue
<template>
|
|
<span class="example-inline"><span class="inline-bot-prefix">pk;</span><slot /></span>
|
|
</template>
|
|
|
|
<style lang="stylus">
|
|
.example-inline {
|
|
font-size: $exampleFontSize;
|
|
font-family: $exampleFontFamily;
|
|
|
|
background-color: $exampleArgColor;
|
|
color: $exampleTextColor;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.custom-block.tip .example-inline {
|
|
background-color: $exampleArgColorInTip;
|
|
}
|
|
|
|
.inline-bot-prefix {
|
|
color: $examplePrefixColor;
|
|
}
|
|
</style> |