Skip to content

Commit

Permalink
Version Update and Text Paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
m-a-y-a-n-k committed Jan 22, 2023
1 parent fbe8d04 commit 622f02c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impression",
"version": "1.0.2",
"version": "1.1.1",
"description": "Make your impression better",
"keywords": [
"semantic analysis",
Expand Down
6 changes: 3 additions & 3 deletions app/src/components/Feedback.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default function FeedBack({ userFeedback, resetFeedback }) {

return (
<>
{customFeedback}
<motion.div
{customFeedback && <p>{customFeedback}</p>}
{customCTAText && (<motion.div
className="feedback-btn"
data-user-feedback={userFeedback}
onClick={() => {
Expand All @@ -21,7 +21,7 @@ export default function FeedBack({ userFeedback, resetFeedback }) {
transition={feedbackCTAMotionConfig.transition}
>
<p>{customCTAText}</p>
</motion.div>
</motion.div>)}
</>
);
}
6 changes: 5 additions & 1 deletion app/src/styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ body {
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
color: white;
font-size: 1.6em;
font-size: 1.5em;
display: flex;
justify-content: center;
align-items: center;
}

h1 , h2 , h3 , h4, h5, h6 , p {
padding: 6px;
}

0 comments on commit 622f02c

Please sign in to comment.