Files
hermit-V2/assets/scss/_scroll.scss
2024-08-24 11:43:52 +03:00

33 lines
455 B
SCSS

.scroll-up {
.scroll {
#st-ring {
stroke: $stt-stroke;
}
#st-circle {
fill: $stt-circle;
}
#st-arrow {
fill: $stt-arrow;
}
}
position: fixed;
bottom: 10%;
right: 2%;
z-index: 1;
opacity: 0;
transition: all 0.5s ease;
}
.hide {
opacity: 0;
transform: translateY(20px);
}
.show {
opacity: 1;
transform: translateY(0);
}