Figma scroll fix

https://forum.figma.com/t/horizontal-scroll-on-the-layers-panel/643/47

当前为 2022-10-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Figma scroll fix
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description https://forum.figma.com/t/horizontal-scroll-on-the-layers-panel/643/47
  6. // @author aolko
  7. // @match https://www.figma.com/file/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=figma.com
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. GM_addStyle(`
  16. [class*="object_row--indent--"] {
  17. margin: 0 !important;
  18. width: 8px;
  19. }
  20. `);
  21. })();