about summary refs log tree commit diff
path: root/pkgs/by-name/br/bruno/scroll-width-fix.patch
blob: e2a0326d17142a0bdb66546656d61e0f40825b20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
diff --git a/packages/bruno-app/src/globalStyles.js b/packages/bruno-app/src/globalStyles.js
index c2b16781..936449ed 100644
--- a/packages/bruno-app/src/globalStyles.js
+++ b/packages/bruno-app/src/globalStyles.js
@@ -163,32 +163,6 @@ const GlobalStyle = createGlobalStyle`
   }
 
 
-  // scrollbar styling
-  // the below media query target non-macos devices
-  // (macos scrollbar styling is the ideal style reference)
-  @media not all and (pointer: coarse) {
-    * {
-      scrollbar-width: thin;
-      scrollbar-color: ${(props) => props.theme.scrollbar.color};
-    }
-    
-    *::-webkit-scrollbar {
-      width: 5px;
-    }
-    
-    *::-webkit-scrollbar-track {
-      background: transparent;
-      border-radius: 5px;
-    }
-    
-    *::-webkit-scrollbar-thumb {
-      background-color: ${(props) => props.theme.scrollbar.color};
-      border-radius: 14px;
-      border: 3px solid ${(props) => props.theme.scrollbar.color};
-    }
-  }
-
-
   // codemirror
   .CodeMirror {
     .cm-variable-valid {