Стрелочка возвращает в то место страницы, где был пользователь до скролла. Сама долго искала скрипт, но идеальный не нашла - пришлось делать самой. <div class="top-link d-none align-items-center justify-content-center">
<span></span>
</div> Что означают классы. Все логично, но вдруг кто не знает: d-none = display: none align-items-center = align-items: center; justify-content-center = justify-content: center <style>
.top-link {
width: 60px;
height: 60px;
display: none;
align-items: center;
justify-content: center;
position: fixed;
right: 40px;
bottom: 40px;
background: var(--grey-color);
z-index: 999;
cursor: pointer;
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.top-link span{
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-bottom: 20px solid red