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.scss 655B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // Badge
  3. //
  4. // General styles
  5. .badge {
  6. text-transform: $badge-text-transfom;
  7. a {
  8. color: $white;
  9. }
  10. }
  11. // Size variations
  12. .badge-md {
  13. padding: .65em 1em;
  14. }
  15. .badge-lg {
  16. padding: .85em 1.375em;
  17. }
  18. // Multiple inline badges
  19. .badge-inline {
  20. margin-right: .625rem;
  21. + span {
  22. top: 2px;
  23. position: relative;
  24. > a {
  25. text-decoration: underline;
  26. }
  27. }
  28. }
  29. // Badge spacing inside a btn with some text
  30. .btn {
  31. .badge {
  32. &:not(:first-child) {
  33. margin-left: .5rem;
  34. }
  35. &:not(:last-child) {
  36. margin-right: .5rem;
  37. }
  38. }
  39. }