PluralKit/docs/content/.vuepress/components/CmdGroup.vue

30 lines
633 B
Vue
Raw Normal View History

2020-06-10 18:11:28 +02:00
<template>
<div class="command-example-group">
<slot />
</div>
</template>
<style lang="stylus">
.command-example-group {
background-color: $exampleBgColor;
border-radius: 6px;
margin: 0.5rem 0;
2020-06-10 18:11:28 +02:00
padding: 0.75rem 1.25rem;
2020-06-11 00:48:43 +02:00
clear: both;
}
.custom-block.tip .command-example-group {
2020-06-11 15:57:45 +02:00
background-color: $exampleBgColorInTip;
2020-06-10 18:11:28 +02:00
}
.command-example-group .command-example {
margin: 0;
padding: 0;
}
.command-example-group .command-example:not(:last-child) {
margin-bottom: 0.5rem;
}
</style>