Skip to content

Commit

Permalink
fix(docs): Fix feedback form UI (#4549)
Browse files Browse the repository at this point in the history
* Fix feedback form UI
  • Loading branch information
vivekjain23 authored Dec 19, 2024
1 parent f5f3354 commit 1bd64f9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 0 additions & 2 deletions docs/site/src/components/FeedbackForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const FeedbackForm = () => {

return (
<div className="feedback-container">
<div className="divider"></div>
<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
12 changes: 11 additions & 1 deletion docs/site/src/components/FeedbackForm/styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
.feedback-container {
/* margin: 20px; */
background-color: #0000001a;
padding-top: 0.25rem;
padding-left: 2rem;
padding-right: 2rem;
padding-bottom: 1.25rem;
margin-top: 1rem;
border-radius: 0.5rem;
}

[data-theme="dark"] .feedback-container {
background-color: #1e1e1e;
}

.feedback-header {
Expand Down

0 comments on commit 1bd64f9

Please sign in to comment.