fix: Allow text overflow in a conversation for wide emails (#2028)

This commit is contained in:
Sivin Varghese 2021-04-05 10:52:51 +05:30 committed by GitHub
parent 1d3b1c1ae5
commit bce5e29c49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -151,6 +151,7 @@
border-top-left-radius: $space-smaller;
color: $color-body;
margin-right: auto;
word-break: break-word;
&.is-image {
border-radius: var(--border-radius-large);
@ -198,6 +199,7 @@
border-bottom-right-radius: $space-smaller;
border-top-right-radius: $space-smaller;
margin-left: auto;
word-break: break-word;
&.is-private {
background: lighten($warning-color, 32%);

View file

@ -22,3 +22,8 @@ export default {
},
};
</script>
<style lang="scss" scoped>
.text-content {
overflow: auto;
}
</style>