ieeeucsd-org/src/components/core/Question.astro

14 lines
No EOL
541 B
Text

---
const {question, answer} = Astro.props;
---
<div class = "text-white w-full flex flex-col mb-[2vh] animate-ease-in-out">
<p data-inview class = "in-view:animate-fade-right text-ieee-yellow text-[2.5vw] md:text-[1.4vw] mb-[2vh] font-semibold pl-[1vw]">
{question}
</p>
<p data-inview class = "md:w-[70%] w-[80%] mb-[2vh] pl-[1vw] text-[2vw] md:text-[1.2vw] in-view:animate-fade-left animate-ease-in-out">
{answer}
</p>
<dev>
<hr class="w-[17%] h-[0.1vw] my-[1vw] bg-white/40">
</dev>
</div>