mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-30 06:05:33 +00:00
29 lines
636 B
Plaintext
29 lines
636 B
Plaintext
<template>
|
|
<div class="rightside-favourites">
|
|
<b-row>
|
|
<b-col>
|
|
<!-- Favorit -->
|
|
</b-col>
|
|
<b-col cols="1" class="text-right">
|
|
<b-icon icon="three-dots-vertical"></b-icon>
|
|
</b-col>
|
|
</b-row>
|
|
<b-row class="d-flex mt-3">
|
|
<b-col>
|
|
<b-avatar></b-avatar>
|
|
<b-avatar></b-avatar>
|
|
<b-avatar></b-avatar>
|
|
<b-avatar></b-avatar>
|
|
</b-col>
|
|
|
|
<b-avatar><b-icon icon="chevron-right"></b-icon></b-avatar>
|
|
<b-avatar><b-icon icon="plus"></b-icon></b-avatar>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'Favourites',
|
|
}
|
|
</script>
|