Skip to content

Commit

Permalink
rounded box for arrow in faq
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 27, 2025
1 parent 91f6250 commit e9f4b50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Faq/Faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Faq = () => {
</Typography>
</div>
<svg
className={`w-6 h-6 transform transition-transform ${
className={`text-black bg-white p-1 rounded-full w-6 h-6 transform transition-transform ${
openIndex === index ? "rotate-180" : ""
}`}
fill="none"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Speakers/Speaker/Speaker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Speaker {
}

const SpeakerCard = ({ speaker }: { speaker: Speaker }) => (
<div className="text-dark flex flex-col justify-center cursor-pointer">
<div className="text-black flex flex-col justify-center cursor-pointer">
<div className="flex gap-2 mb-2">
{/* <img
src={`/${speaker.company.toLowerCase()}-logo.svg`}
Expand Down

0 comments on commit e9f4b50

Please sign in to comment.