From 34e6bf77e96406abb53aa1897d63dd211845d658 Mon Sep 17 00:00:00 2001
From: Fedor Katurov <gotham48@gmail.com>
Date: Tue, 19 Nov 2019 16:44:46 +0700
Subject: [PATCH] fixed hover

---
 src/components/flow/FlowGrid/styles.scss   | 16 +++++++---------
 src/components/main/UserButton/styles.scss |  4 ----
 2 files changed, 7 insertions(+), 13 deletions(-)

diff --git a/src/components/flow/FlowGrid/styles.scss b/src/components/flow/FlowGrid/styles.scss
index 3e8e3dff..2156f950 100644
--- a/src/components/flow/FlowGrid/styles.scss
+++ b/src/components/flow/FlowGrid/styles.scss
@@ -63,11 +63,8 @@ $stamp_color: $content_bg;
   grid-row-end: span 1;
   grid-column-start: 1;
   grid-column-end: -1;
-  // gridRow: "1 / 2",
-  // gridColumn: "1 / -1",
   background: darken($content_bg, 2%);
   border-radius: $radius;
-  // height: 33vh;
   display: flex;
   align-items: center;
   justify-content: center;
@@ -93,16 +90,17 @@ $stamp_color: $content_bg;
   position: relative;
 
   &::after {
-    content: '';
+    content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     height: 60px;
     width: 100%;
-    background: linear-gradient(transparentize($stamp_color, 1), $stamp_color 90%);
+    background: linear-gradient(
+      transparentize($stamp_color, 1),
+      $stamp_color 90%
+    );
+    pointer-events: none;
+    touch-action: none;
   }
-
-  // @media (max-width: $cell * 2) {
-  // grid-row-end: span 3;
-  // }
 }
diff --git a/src/components/main/UserButton/styles.scss b/src/components/main/UserButton/styles.scss
index eb58b97d..c6df0518 100644
--- a/src/components/main/UserButton/styles.scss
+++ b/src/components/main/UserButton/styles.scss
@@ -15,9 +15,7 @@
   border-radius: $radius;
   display: none;
   z-index: 1;
-  // min-width: 100%;
   box-sizing: border-box;
-  // transform: translate(0, $gap);
   padding: $gap;
 
   &::after {
@@ -66,8 +64,6 @@
   cursor: pointer;
   margin-left: $gap;
   white-space: nowrap;
-  // box-shadow: inset transparentize($content_bg, 0.8) 0 0 0 1px;
-  // background: transparentize($content_bg, 0.1);
   padding: 0;
 }