badge.scss 587 B

1234567891011121314151617181920212223242526272829
  1. .nut-badge {
  2. position: relative;
  3. display: inline-block;
  4. sup {
  5. position: absolute;
  6. height: 18px;
  7. min-width: 8px;
  8. line-height: 18px;
  9. padding: 0 5px;
  10. background-color: #fff;
  11. text-align: center;
  12. border: 1px solid $primary-color;
  13. color: $primary-color;
  14. font-size: 10px;
  15. border-radius: 10px;
  16. z-index: $zindex-mask;
  17. }
  18. .nut-badge__content {
  19. transform: translateY(-50%) translateX(100%);
  20. }
  21. .is-dot {
  22. width: 10px;
  23. height: 10px;
  24. padding: 0;
  25. right: 5px;
  26. border-radius: 10px;
  27. background: $primary-color;
  28. }
  29. }