fix: Allow text overflow in a conversation for wide emails (#2028)
This commit is contained in:
parent
1d3b1c1ae5
commit
bce5e29c49
2 changed files with 7 additions and 0 deletions
|
@ -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%);
|
||||
|
|
|
@ -22,3 +22,8 @@ export default {
|
|||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.text-content {
|
||||
overflow: auto;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue