Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@
* OwnerStack has more constraints that make it easier so it won't be a 1:1 port.
*/
overflow-x: auto;
-ms-overflow-style: none;
scrollbar-width: none;
Comment on lines +130 to +131

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

syntax: missing ::-webkit-scrollbar { display: none; } for Chrome/Safari

Suggested change
-ms-overflow-style: none;
scrollbar-width: none;
-ms-overflow-style: none;
scrollbar-width: none;
}
.SuspenseBreadcrumbs::-webkit-scrollbar {
display: none;
Prompt To Fix With AI
This is a comment left during a code review.
Path: packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTab.css
Line: 130:131

Comment:
**syntax:** missing `::-webkit-scrollbar { display: none; }` for Chrome/Safari

```suggestion
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.SuspenseBreadcrumbs::-webkit-scrollbar {
  display: none;
```

How can I resolve this? If you propose a fix, please make it concise.

}

.SuspenseTreeViewFooter {
Expand Down
Loading