Files
tiptap/docs/src/components/FeatureList/index.vue
Philipp Kühn 7bf5ee3827 add some styling
2021-02-03 16:26:39 +01:00

20 lines
223 B
Vue

<template>
<div class="feature-list">
<slot />
</div>
</template>
<script>
export default {
props: {
},
}
</script>
<style lang="scss" scoped>
.feature-list {
column-count: 2;
column-gap: 1rem;
}
</style>