mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
Changed the scroll-to-top extension to use an SVG icon (#205)
* Create arrow.svg * Update mod.js * Update styles.css
This commit is contained in:
parent
f1dd72cf11
commit
3557987988
1
mods/scroll-to-top/arrow.svg
Normal file
1
mods/scroll-to-top/arrow.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="250" height="250" fill="currentColor" viewBox="0 0 250 250"><path d="M102.683 234.52V110.968H67.5474L124.859 12.184L182.459 110.968H147.323V234.52H102.683Z" fill="currentColor"/></svg>
|
After Width: | Height: | Size: 232 B |
@ -7,7 +7,9 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const { createElement } = require('../../pkg/helpers.js');
|
||||
const { createElement } = require('../../pkg/helpers.js'),
|
||||
path = require('path'),
|
||||
fs = require('fs-extra');
|
||||
|
||||
module.exports = {
|
||||
id: '0a958f5a-17c5-48b5-8713-16190cae1959',
|
||||
@ -49,9 +51,15 @@ module.exports = {
|
||||
const $container = document.createElement('div');
|
||||
const $help = document.querySelector('.notion-help-button');
|
||||
const $scroll = createElement(
|
||||
'<div class="notion-scroll-button" role="button">🠙</div>' // 🠙;
|
||||
'<div class="notion-scroll-button" role="button"></div>'
|
||||
);
|
||||
|
||||
(async () => {
|
||||
$scroll.innerHTML = await fs.readFile(
|
||||
path.resolve(`${__dirname}/arrow.svg`) // 🠙;
|
||||
)
|
||||
})();
|
||||
|
||||
$container.className = 'bottom-right-buttons';
|
||||
$help.after($container);
|
||||
$container.append($scroll);
|
||||
|
@ -53,3 +53,8 @@
|
||||
transition-property: opacity, transform, visibility;
|
||||
transition-delay: 0, 0, 700ms;
|
||||
}
|
||||
|
||||
.notion-scroll-button > svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user