2020-06-10 18:11:28 +02:00
|
|
|
|
<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;
|
2020-06-11 00:48:43 +02:00
|
|
|
|
|
|
|
|
|
|
background-color: $exampleArgColor;
|
2020-06-10 18:11:28 +02:00
|
|
|
|
color: $exampleTextColor;
|
|
|
|
|
|
padding: 0.2rem 0.4rem;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-06-11 00:48:43 +02:00
|
|
|
|
.custom-block.tip .example-inline {
|
2020-06-11 15:57:45 +02:00
|
|
|
|
background-color: $exampleArgColorInTip;
|
2020-06-11 00:48:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-06-10 18:11:28 +02:00
|
|
|
|
.inline-bot-prefix {
|
|
|
|
|
|
color: $examplePrefixColor;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|