From 06dd10844da72448a8e79248b8765c210ad0d1ee Mon Sep 17 00:00:00 2001 From: Chris Gaszynski Date: Fri, 5 Feb 2021 00:45:47 +0200 Subject: [PATCH] Fix blinking message options when hovering the message and moving a mouse horizontally. (#4944) --- stylesheets/_modules.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 7b03988a3..cc460a29d 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -128,10 +128,12 @@ } .module-message__buttons--incoming { - left: calc(100% + 8px); + left: 100%; + padding-left: 8px; } .module-message__buttons--outgoing { - right: calc(100% + 8px); + right: 100%; + padding-right: 8px; flex-direction: row-reverse; }