From 09be7131ccfb15a8832df2188d2cbd754e74ffb0 Mon Sep 17 00:00:00 2001 From: Bohdan Date: Fri, 13 Mar 2026 18:21:44 +0000 Subject: [PATCH] add missing color to scrollbar-color property (#7481) --- packages/bruno-app/src/globalStyles.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/bruno-app/src/globalStyles.js b/packages/bruno-app/src/globalStyles.js index ef875f026..64cc8dc6f 100644 --- a/packages/bruno-app/src/globalStyles.js +++ b/packages/bruno-app/src/globalStyles.js @@ -187,11 +187,10 @@ const GlobalStyle = createGlobalStyle` // scrollbar styling - // the below media query target non-macos devices - // (macos scrollbar styling is the ideal style reference) + // the below media query targets non-touch devices @media not all and (pointer: coarse) { * { - scrollbar-color: ${(props) => props.theme.scrollbar.color}; + scrollbar-color: ${(props) => props.theme.scrollbar.color} transparent; } *::-webkit-scrollbar {