diff --git a/src/components/navigation/items/Item.module.scss b/src/components/navigation/items/Item.module.scss
index 0cccb59e8241f8659fd640893195f78044e222c4..8251d4c302ee1c9af1b4541723fc5a587b505d89 100644
--- a/src/components/navigation/items/Item.module.scss
+++ b/src/components/navigation/items/Item.module.scss
@@ -22,10 +22,6 @@
 
     &.compact {
         height: 32px;
-
-        &[data-mobile="true"] { // TOFIX: make sure this works on mobile 
-            height: 50px;
-        }
     }
 
     &.user {
@@ -148,3 +144,18 @@
         background: var(--error);
     }
 }
+
+@media (pointer: coarse) {
+    .item {
+        height: 55px;
+
+        &.compact {
+            height: 50px;
+
+            div > svg {
+                height: 22px;
+                width: 22px;
+            }
+        }
+    }
+  }
\ No newline at end of file