Skip to content

fix (users): email text-area out of bounds on resize#1435

Open
paanSinghCoder wants to merge 1 commit intomainfrom
fix/invite-users-text-area
Open

fix (users): email text-area out of bounds on resize#1435
paanSinghCoder wants to merge 1 commit intomainfrom
fix/invite-users-text-area

Conversation

@paanSinghCoder
Copy link
Contributor

@paanSinghCoder paanSinghCoder commented Mar 2, 2026

Summary

fix (users): email text-area out of bounds on resize

  • Allow only vertical resize for the user invite text-area.
  • Set width as 100% to avoid going out of container modal.
  • Set max height as var(--rs-space-17) (120px).

Changes

Add className .invite-users-emails-textarea to the email text-area with below CSS:

.invite-users-emails-textarea {
  resize: vertical;
  width: 100%;
  max-height: var(--rs-space-17);
}

Test Plan

  • Manual testing completed
  • Build and type checking passes

@vercel
Copy link

vercel bot commented Mar 2, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
frontier Ready Ready Preview, Comment Mar 2, 2026 8:02am

@coderabbitai
Copy link

coderabbitai bot commented Mar 2, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 65d7f71 and 9074caf.

📒 Files selected for processing (2)
  • web/sdk/admin/views/users/list/invite-users.module.css
  • web/sdk/admin/views/users/list/invite-users.tsx

📝 Walkthrough

Summary by CodeRabbit

  • Style
    • Enhanced the email input textarea in the user invitation interface with improved styling properties, including optimized sizing and resize behavior for better usability.

Walkthrough

A CSS class for styling a textarea component is added to the module stylesheet, and the corresponding className is applied to the emails textarea in the invite-users form component. No logic or validation changes.

Changes

Cohort / File(s) Summary
TextArea Styling
web/sdk/admin/views/users/list/invite-users.module.css, web/sdk/admin/views/users/list/invite-users.tsx
Added new CSS class .invite-users-emails-textarea with vertical resize constraint, full width, and max-height property. Applied className to TextArea component rendering emails field.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coveralls
Copy link

Pull Request Test Coverage Report for Build 22566804334

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 39.848%

Totals Coverage Status
Change from base Build 22563274072: 0.0%
Covered Lines: 13595
Relevant Lines: 34117

💛 - Coveralls

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants