index.scss 457 B

12345678910111213141516171819202122232425
  1. @import '../common/abstracts/variable';
  2. @import '../common/abstracts/mixin';
  3. @include b(backtop) {
  4. position: fixed;
  5. background-color: $-backtop-bg;
  6. width: 40px;
  7. height: 40px;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. color: $-color-gray-8;
  12. @include edeep(backicon) {
  13. font-size: $-backtop-icon-size;
  14. }
  15. @include when(circle) {
  16. border-radius: 50%;
  17. }
  18. @include when(square) {
  19. border-radius: 4px;
  20. }
  21. }