[Enhancement] Group widget messages by users (#367)

* Remove thumbnail

* Show grouped messages
This commit is contained in:
Pranav Raj S
2019-12-15 23:53:04 +05:30
committed by Sojan Jose
parent 5c7c325c9c
commit 17587d8a0c
15 changed files with 157 additions and 96 deletions

View File

@@ -76,3 +76,27 @@ export default {
},
};
</script>
<style lang="scss" scoped>
@import '~dashboard/assets/scss/variables';
@import '~dashboard/assets/scss/mixins';
.user-thumbnail-box {
@include flex-shrink;
position: relative;
.user-thumbnail {
border-radius: 50%;
height: 100%;
width: 100%;
}
.source-badge {
bottom: -$space-micro / 2;
height: $space-slab;
position: absolute;
right: $zero;
width: $space-slab;
}
}
</style>