feat(webapp): GroupList shows 2 GroupItem per row

This commit is contained in:
elweyn 2023-03-15 10:43:35 +01:00
parent 9b759ec1d2
commit e2c82116ae

View File

@ -1,9 +1,12 @@
<template>
<div class="group-list">
<ds-space margin-bottom="small" v-for="group in groups" :key="group.id">
<ds-flex class="group-list">
<ds-flex-item
v-for="group in groups"
:key="group.id"
:width="{ base: '47%' }">
<group-teaser :group="group" />
</ds-space>
</div>
</ds-flex-item>
</ds-flex>
</template>
<script>
@ -19,3 +22,8 @@ export default {
},
}
</script>
<style lang="scss">
.ds-flex-item {
margin: 0em 1em 2em 1em;
}
</style>