hermit-V2/assets/scss/_scroll.scss
2023-08-06 18:46:12 +05:30

16 lines
243 B
SCSS

.scroll-up{
position: fixed;
bottom: 10%;
right: 0;
z-index: 1;
opacity: 0;
transition: all 0.5s ease;
}
.hide{
opacity: 0;
transform: translateY(20px);
}
.show{
opacity: 1;
transform: translateY(0);
}