Hexo Next主题回到顶部按钮改到右边

找到\themes\next\source\css\_mixins.styl中的

_mixins.styl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sidebar-toggle() {
background: $b2t-bg-color;
cursor: pointer;
opacity: $b2t-opacity;
position: fixed;
z-index: $zindex-3;
sidebar-toggle-position(false);

&:hover {
opacity: $b2t-opacity-hover;
}

+tablet-mobile() {
opacity: $b2t-opacity-hover;
}
}

sidebar-toggle-position(false);修改为true,修改后的代码:

_mixins.styl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sidebar-toggle() {
background: $b2t-bg-color;
cursor: pointer;
opacity: $b2t-opacity;
position: fixed;
z-index: $zindex-3;
sidebar-toggle-position(true);

&:hover {
opacity: $b2t-opacity-hover;
}

+tablet-mobile() {
opacity: $b2t-opacity-hover;
}
}