scroll.sass 476 B

1234567891011121314151617181920212223
  1. html
  2. scroll-behavior: smooth
  3. .site-manage
  4. position: fixed
  5. bottom: 20px
  6. left: 20px
  7. display: flex
  8. flex-direction: column
  9. justify-content: center
  10. align-items: center
  11. gap: 10px
  12. button
  13. padding: 10px
  14. border-radius: 10px
  15. background-color: $secondary
  16. color: $primary
  17. border: $primary 2px solid
  18. transition: transform 0.5s, opacity 0.5s
  19. &:hover
  20. transform: rotate(30deg)