backtop.scss 457 B

12345678910111213141516171819202122
  1. @import "mixins/mixins";
  2. @import "common/var";
  3. @include b(backtop) {
  4. position: fixed;
  5. background-color: $--backtop-background-color;
  6. width: 40px;
  7. height: 40px;
  8. border-radius: 50%;
  9. color: $--backtop-font-color;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. font-size: 20px;
  14. box-shadow: 0 0 6px rgba(0,0,0, .12);
  15. cursor: pointer;
  16. z-index: 5;
  17. &:hover {
  18. background-color: $--backtop-hover-background-color
  19. }
  20. }