Skip to content

Commit febb288

Browse files
committed
Improve styling on success messages
1 parent 6cf185d commit febb288

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/pages/front/FeedbackSection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const FeedbackSection = () => {
9494
</motion.div>}
9595
{(response && response.success) && <motion.div
9696
key="success"
97-
className="py-8 text-xl font-semibold text-green-500"
97+
className="p-4 my-8 text-xl font-semibold text-green-500 rounded-md bg-primary/10"
9898
variants={fadeAnim}
9999
initial="in"
100100
animate="anim"

src/components/pages/front/SignupSection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const SignupSection = () => {
119119
</motion.div>}
120120
{(response && response.success) && <motion.div
121121
key="success"
122-
className="py-4 mb-8 text-xl font-semibold text-green-500"
122+
className="p-4 mb-8 text-xl font-semibold text-green-500 rounded-md bg-primary/10"
123123
variants={fadeAnim}
124124
initial="in"
125125
animate="anim"

0 commit comments

Comments
 (0)