mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
fix: Remove custom scrollbar styling (#9640)
This commit is contained in:
@@ -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)";
|
||||
|
||||
Reference in New Issue
Block a user