add some styling

This commit is contained in:
Philipp Kühn
2021-02-02 23:11:52 +01:00
parent fb7c13e066
commit c223f18887
5 changed files with 142 additions and 39 deletions

View File

@@ -0,0 +1,19 @@
<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>