mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
35 lines
617 B
Vue
35 lines
617 B
Vue
<template>
|
|
<div class="slot-is-not-moderator">
|
|
<div class="text-right">
|
|
<b-avatar text="BV"></b-avatar>
|
|
<span class="ml-2 mr-2 text-bold">{{ message.firstName }} {{ message.lastName }}</span>
|
|
<div class="mt-2">{{ message }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
message: {
|
|
type: Object,
|
|
default() {
|
|
return {}
|
|
},
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
.slot-is-not-moderator {
|
|
clear: both;
|
|
float: right;
|
|
background-color: aquamarine;
|
|
width: 75%;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|