Skip to content

Commit

Permalink
Merge pull request #111 from IT-Academy-BCN/feature/improve-faqs-shadow
Browse files Browse the repository at this point in the history
Feature/improve-faq-shadow #103
  • Loading branch information
vicenlu authored Nov 9, 2023
2 parents e00dd2d + 0a1d624 commit fa2153f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/faqs/FAQsComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const FAQs = () => {

{faqsClone.map((faq: Faq, index: number) => (
<div className="mx-5" key={faq.id}>
<div className={`collapse rounded-md mb-5 shadow-xl`}>
<div className={`collapse rounded-md mb-5 shadow-[0_2px_6px_rgba(70,70,70,0.2)] border-[1px] `}>
<input type="checkbox" className="peer" id={index.toString()} />
<div className="collapse-title relative lg:flex rounded-b-md bg-white text-justify text-black text-4 font-poppins font-bold font-poppins peer-checked:bg-[#BA007C] peer-checked:rounded-b-[0px] peer-checked:text-[#fff]">
{window.location.pathname == "/backoffice" &&
Expand Down

0 comments on commit fa2153f

Please sign in to comment.