PluralKit/docs/content/.vuepress/components/CmdGroup.vue
2020-06-10 18:11:28 +02:00

23 lines
No EOL
475 B
Vue

<template>
<div class="command-example-group">
<slot />
</div>
</template>
<style lang="stylus">
.command-example-group {
background-color: $exampleBgColor;
border-radius: 6px;
padding: 0.75rem 1.25rem;
}
.command-example-group .command-example {
margin: 0;
padding: 0;
}
.command-example-group .command-example:not(:last-child) {
margin-bottom: 0.5rem;
}
</style>