Selaa lähdekoodia

remove scrollbar style

AykutSarac 3 vuotta sitten
vanhempi
commit
61c36d204c
1 muutettua tiedostoa jossa 1 lisäystä ja 11 poistoa
  1. 1 11
      src/pages/editor.tsx

+ 1 - 11
src/pages/editor.tsx

@@ -5,17 +5,7 @@ import dynamic from "next/dynamic";
 
 const Editor = dynamic(() => import("src/containers/Editor"), { ssr: false });
 
-const StyledEditorWrapper = styled.div`
-  *::-webkit-scrollbar {
-    width: 8px;
-    background: ${({ theme }) => theme.BLACK_SECONDARY};
-  }
-
-  *::-webkit-scrollbar-thumb {
-    border-radius: 5px;
-    background-color: ${({ theme }) => theme.SILVER_DARK};
-  }
-`;
+const StyledEditorWrapper = styled.div``;
 
 const EditorPage: React.FC = () => {
   return (