📝맨 위로 올라가기 버튼 만들기

  1. _sass/minimal-mistakes/_sidebar.scss에 아래 내용 삽입
1
2
3
4
5
6
.sidebar__top {
  position: fixed;
  bottom: 1.5em;
  right: 2em;
  z-index: 10;
}


  1. _layouts/default.html에 아래 내용 삽입
1
2
3
<aside class="sidebar__top">
<a href="#site-nav"> <i class="fas fa-angle-double-up fa-2x"></i></a>
</aside>


div id=”footer” class=”page__footer” 의 바로 위에 추가합니다.


출처: https://chaelin0722.github.io/blog/back_to_top/#site-nav

Leave a comment