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

fix(docs): Fix feedback form UI #4549

Merged
merged 4 commits into from
Dec 19, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/site/src/components/FeedbackForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ const FeedbackForm = () => {
};

return (
<div className="feedback-container">
<div className="divider"></div>
<div className="feedback-container bg-[#0000001a] dark:bg-[#1e1e1e] pt-1 px-8 pb-5 mt-4 rounded-lg">
vivekjain23 marked this conversation as resolved.
Show resolved Hide resolved
<div className={clsx("h3", "feedback-header")}>Feedback Form</div>
<form onSubmit={handleSubmit}>
<div className="form-group">
Expand Down Expand Up @@ -54,7 +53,6 @@ const FeedbackForm = () => {
Submit Feedback
</button>
</form>
<div className="divider"></div>
</div>
);
};
Expand Down
Loading