a zip code crypto-currency system good for red ONLY

badge.scss 574B

1234567891011121314151617181920212223242526272829303132
  1. @import "../../themes/ionic.globals";
  2. // Badge
  3. // --------------------------------------------------
  4. /// @prop - Font size of the badge
  5. $badge-font-size: 1.3rem !default;
  6. /// @prop - Font weight of the badge
  7. $badge-font-weight: bold !default;
  8. ion-badge {
  9. @include padding(3px, 8px);
  10. @include text-align(center);
  11. display: inline-block;
  12. min-width: 10px;
  13. font-size: $badge-font-size;
  14. font-weight: $badge-font-weight;
  15. line-height: 1;
  16. white-space: nowrap;
  17. vertical-align: baseline;
  18. }
  19. ion-badge:empty {
  20. display: none;
  21. }