Files
hexo-blog/themes/hexo-theme-Tsu/source/styles/back-to-top.styl
2021-06-05 03:45:20 -05:00

14 lines
236 B
Stylus

.back-to-top {
position: fixed;
right: 20px;
bottom: 20px;
transition-property: transform;
transition-timing-function: ease-out;
transition-duration: 0.3s;
z-index: 10;
&:hover {
transform: translateY(-5px);
}
}