blog-source/themes/next/source/css/_common/components/back-to-top-sidebar.styl
2022-03-15 20:46:31 +08:00

21 lines
325 B
Stylus

.back-to-top {
background: transparent;
margin: 20px - $sidebar-offset -10px -20px;
opacity: 0;
if (!hexo-config('back2top.scrollpercent')) {
span {
display: none;
}
}
&.back-to-top-on {
cursor: pointer;
opacity: $b2t-opacity;
&:hover {
opacity: $b2t-opacity-hover;
}
}
}