fix: Remove custom scrollbar styling (#9640)

This commit is contained in:
Tom Moor
2025-07-15 08:15:24 -04:00
committed by GitHub
parent 8a3a4f3a30
commit a9e40b8709
-4
View File
@@ -1,5 +1,4 @@
import { observer } from "mobx-react";
import { transparentize } from "polished";
import * as React from "react";
import styled from "styled-components";
import { hideScrollbars } from "@shared/styles";
@@ -90,9 +89,6 @@ const Wrapper = styled.div<{
overflow-x: ${(props) => (props.$overflow ? props.$overflow : "hidden")};
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: ${(props) => transparentize(0.2, props.theme.divider)}
transparent;
box-shadow: ${(props) => {
if (props.$topShadowVisible && props.$bottomShadowVisible) {
return "0 1px inset rgba(0,0,0,.1), 0 -1px inset rgba(0,0,0,.1)";