PageControls.module.scss 380 B

123456789101112131415161718
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. @use '@growi/ui/scss/atoms/btn-muted';
  3. @use './button-styles';
  4. // PageItemControl styles
  5. .grw-page-controls {
  6. :global(.btn-page-item-control) {
  7. @extend %btn-basis;
  8. }
  9. }
  10. // == Colors
  11. // PageItemControl colors
  12. .grw-page-controls {
  13. :global(.btn-page-item-control) {
  14. @include btn-muted.colorize(bs.$gray-500);
  15. }
  16. }