Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed the spacing of Textarea.tsx to 3 to match input.tsx #70

Merged
merged 3 commits into from
Nov 13, 2024

Conversation

APerson09
Copy link
Collaborator

Changed the Textarea.tsx spacing size from 1.5 to 3. This is to match the input.tsx area spacing size of 3.

@APerson09 APerson09 self-assigned this Nov 9, 2024
@APerson09 APerson09 linked an issue Nov 9, 2024 that may be closed by this pull request
Copy link
Contributor

@seanquiambao seanquiambao left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there's one more for radio.

Comment on lines 19 to 24
className="flex flex-row space-x-4"
className="flex flex-row space-x-3"
>
{options.map((option) => (
<div
key={option}
className={`flex items-center space-x-2 rounded-sm border py-1 pl-2 pr-4 hover:bg-starlight-blue hover:text-white ${selected === String(option) ? "bg-starlight-blue text-white" : "bg-white"}`}
className={`flex items-center space-x-3 rounded-sm border py-3 pl-3 pr-3 hover:bg-starlight-blue hover:text-white ${selected === String(option) ? "bg-starlight-blue text-white" : "bg-white"}`}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert these, these are fine.

but you need to add space between title and the radio groups.

@seanquiambao seanquiambao merged commit 4490da7 into dev Nov 13, 2024
5 checks passed
@seanquiambao seanquiambao deleted the APerson09/Spacing branch November 13, 2024 01:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Ensure Consistent Spacing
2 participants