king
2021-01-18 38b5297cbfbe3d61ee2e800b51e8324ee163f43e
src/components/editor/index.scss
@@ -0,0 +1,20 @@
.normal-braft-editor {
  .bf-content {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .bf-content::-webkit-scrollbar {
    width: 7px;
  }
  .bf-content::-webkit-scrollbar-thumb {
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
    background: rgba(0, 0, 0, 0.13);
  }
  .bf-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(0, 0, 0, 0);
  }
}