Skip to content

Commit

Permalink
Merge pull request #120 from sahaj24/staging
Browse files Browse the repository at this point in the history
Update Faq.jsx
  • Loading branch information
githubcommunitysrm authored Nov 19, 2024
2 parents 64e92de + cadc139 commit 645f830
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Contact/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ const Faq = () => {
{faqData.map((item, index) => (
<div
key={index}
className=" font-dmSans border-2 rounded-2xl mx-auto transition-transform ease-in-out duration-300 transform hover:shadow-lg hover:border-bright_green w-4/5 md:w-3/5"
className=" font-dmSans border-2 rounded-2xl mx-auto transition-transform ease-in-out duration-300 transform hover:shadow-lg hover:border-bright_green w-4/5 md:w-3/5 overflow-hidden"
style={{ borderColor: "#374151" }}
>
<div
className="cursor-pointer"
onClick={() => toggleDropdown(index)}
>
<div
className={`flex items-center justify-between p-4 pl-6 transition ease-in-out duration-700 ${
className={`flex items-center justify-between p-4 pl-6 transition ease-in-out duration-700 rounded-2xl ${
openAnswer === index
? "bg-bright_green text-black rounded-t-2xl"
? "bg-bright_green text-black"
: ""
}`}
>
Expand Down

0 comments on commit 645f830

Please sign in to comment.