BookmarkButtons.module.scss 442 B

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