hermit-V2/assets/scss/_scroll.scss

16 lines
244 B
SCSS
Raw Permalink Normal View History

2023-08-06 09:16:12 -04:00
.scroll-up{
position: fixed;
bottom: 10%;
2023-10-24 11:25:38 -04:00
right: 2%;
2023-08-06 09:16:12 -04:00
z-index: 1;
opacity: 0;
transition: all 0.5s ease;
}
.hide{
opacity: 0;
transform: translateY(20px);
}
.show{
opacity: 1;
transform: translateY(0);
}