AiChatModal.module.scss 478 B

123456789101112131415161718192021222324252627
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. @use '@growi/core-styles/scss/variables/growi-official-colors';
  3. @use '@growi/ui/scss/atoms/btn-muted';
  4. .grw-aichat-modal :global {
  5. .textarea-ask {
  6. max-height: 30vh;
  7. }
  8. .btn-submit {
  9. font-size: 1.1em;
  10. }
  11. }
  12. // == Colors
  13. .grw-aichat-modal :global {
  14. .growi-ai-chat-icon {
  15. color: growi-official-colors.$growi-ai-purple;
  16. }
  17. .btn-submit {
  18. @include btn-muted.colorize(bs.$purple, bs.$purple);
  19. }
  20. }