Skip to content

Commit c1cd04f

Browse files
fixes incorrect scrollbar display issue (#7742)
* fixes incorrect scrollbar override issue Here the CSS for scrollbar-width is overriding the CSS which is defined in the main.css file (--scrollbar-width: calc(var(--font-size) * 0.6);) due to which the scrollbars are incorrectly loaded in the application * keep the scrollbars thin for macos --------- Co-authored-by: gatzjames <jamesgatzos@gmail.com>
1 parent f87384f commit c1cd04f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/insomnia/src/ui/css/styles.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
@tailwind components;
1313
@tailwind utilities;
1414

15-
* {
15+
16+
[data-platform="darwin"] * {
1617
scrollbar-width: thin;
1718
}
1819

0 commit comments

Comments
 (0)