From 35c2c226df42f81fcd08cdb045734e1632275550 Mon Sep 17 00:00:00 2001 From: Gheorghe Pinzaru Date: Wed, 23 Dec 2020 11:12:01 +0300 Subject: [PATCH] Remove redundant overflow hidden on messages Fixes #11439 Signed-off-by: Gheorghe Pinzaru --- src/status_im/ui/screens/chat/styles/message/message.cljs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/status_im/ui/screens/chat/styles/message/message.cljs b/src/status_im/ui/screens/chat/styles/message/message.cljs index 148cccff2c..3a331432d1 100644 --- a/src/status_im/ui/screens/chat/styles/message/message.cljs +++ b/src/status_im/ui/screens/chat/styles/message/message.cljs @@ -118,8 +118,7 @@ (defn message-view [{:keys [content-type outgoing group-chat last-in-group?]}] (merge - {:overflow :hidden - :border-top-left-radius 16 + {:border-top-left-radius 16 :border-top-right-radius 16 :border-bottom-right-radius 16 :border-bottom-left-radius 16 @@ -314,4 +313,4 @@ :left 0 :position :absolute :background-color :transparent - :border-color colors/black-transparent})) \ No newline at end of file + :border-color colors/black-transparent}))