LikeButtons.module.scss 426 B

123456789101112131415161718192021222324
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. @use '@growi/ui/scss/atoms/btn-muted';
  3. @use './button-styles';
  4. .btn-group-like :global {
  5. .btn-like {
  6. @extend %btn-basis;
  7. }
  8. .btn-like#like-button {
  9. padding-right: 3px;
  10. }
  11. .total-counts {
  12. @extend %btn-total-counts-basis;
  13. padding-left: 5px;
  14. }
  15. }
  16. // == Colors
  17. .btn-group-like :global {
  18. .btn-like {
  19. @include btn-muted.colorize(bs.$red);
  20. }
  21. }