diff --git a/repo/property-layout/mod.js b/repo/property-layout/mod.js index 6df88c4..ab3c16b 100644 --- a/repo/property-layout/mod.js +++ b/repo/property-layout/mod.js @@ -12,7 +12,7 @@ module.exports = { tags: ['extension'], name: 'property layout', desc: 'auto-collapse page properties that usually push down page content.', - version: '0.2.2', + version: '0.2.3', author: 'alexander-kazakov', hacks: { 'renderer/preload.js'(store, __exports) { @@ -30,7 +30,7 @@ module.exports = { function process(list) { queue = []; let properties = document.querySelector( - '.notion-scroller.vertical > div > div:nth-child(2) [style="width: 100%; font-size: 14px;"]' + '.notion-scroller.vertical > :first-child [style="width: 100%; font-size: 14px;"]' ); if ( properties && diff --git a/repo/property-layout/styles.css b/repo/property-layout/styles.css index 60580be..e058aa5 100644 --- a/repo/property-layout/styles.css +++ b/repo/property-layout/styles.css @@ -20,6 +20,9 @@ border-radius: 2px; transition: background 200ms; } +.notion-scroller.vertical > div > :first-child .propertylayout-toggle { + margin-top: 1em; +} .propertylayout-toggle[data-action='show'] { margin-bottom: 1em; }