No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_badge-dot.scss 655B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // Dot badge
  3. //
  4. // General styles
  5. .badge-dot {
  6. padding-left: 0;
  7. padding-right: 0;
  8. background: transparent;
  9. font-weight: $font-weight-normal;
  10. font-size: $font-size-sm;
  11. text-transform: none;
  12. strong {
  13. color: $gray-800;
  14. }
  15. i {
  16. display: inline-block;
  17. vertical-align: middle;
  18. width: .375rem;
  19. height: .375rem;
  20. border-radius: 50%;
  21. margin-right: .375rem;
  22. }
  23. &.badge-md {
  24. i {
  25. width: .5rem;
  26. height: .5rem;
  27. }
  28. }
  29. &.badge-lg {
  30. i {
  31. width: .625rem;
  32. height: .625rem;
  33. }
  34. }
  35. }