From 046a899163daf402b3694d0aab062d7d70638160 Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Thu, 16 Jan 2020 21:27:04 +0100 Subject: Fix layout bugs Signed-off-by: Marco Ambrosini --- src/components/Quote.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/components/Quote.vue') diff --git a/src/components/Quote.vue b/src/components/Quote.vue index df1147711..47513b087 100644 --- a/src/components/Quote.vue +++ b/src/components/Quote.vue @@ -210,8 +210,8 @@ export default { margin: 10px 0 10px 0; padding: 0 0 0 10px; display: flex; - max-width: $messages-list-max-width; - margin: 0 $message-utils-width 0 0; + max-width: $messages-list-max-width - $message-utils-width; + margin: 0; &__main { display: flex; flex-direction: column; @@ -221,6 +221,11 @@ export default { } &__text { color: var(--color-text-light); + & p { + max-width: 662px; + text-overflow: ellipsis; + overflow: hidden; + } } } &__right { -- cgit v1.2.3