_bootstrapOverrides.scss 464 B

12345678910111213141516171819
  1. @import './themes';
  2. .btn-sm {
  3. height: 31px;
  4. }
  5. .badge-info {
  6. @include themify($themes) {
  7. color: themed('baseColorLight');
  8. background-color: themed('baseColorDark');
  9. border-color: themed('baseColorDark');
  10. }
  11. &.inverted {
  12. @include themify($themes) {
  13. color: themed('baseColorDark');
  14. background-color: themed('baseColorLight');
  15. border-color: themed('baseColorLight');
  16. }
  17. }
  18. }