_label.scss 528 B

12345678910111213141516171819202122232425262728
  1. .label {
  2. display: inline;
  3. padding: .24em .6em .34em;
  4. font-size: 87%;
  5. font-weight: 600;
  6. line-height: 1;
  7. color: $white;
  8. text-align: center;
  9. white-space: nowrap;
  10. vertical-align: baseline;
  11. border-radius: .25em;
  12. cursor: pointer;
  13. margin-bottom: 4px;
  14. }
  15. .badge {
  16. margin-bottom: 4px;
  17. min-width: 10px;
  18. padding: 5px 8px;
  19. font-size: 87%;
  20. font-weight: 600;
  21. color: #fff;
  22. border-radius: 10px;
  23. }
  24. .bg-default.badge, .label.bg-default {
  25. color: $font-color;
  26. font-weight: 700;
  27. }