small adjustment
This commit is contained in:
parent
3d38ead369
commit
351a9747a5
3 changed files with 3 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ export const AccordionComp = forwardRef<HTMLDivElement, AccordionCompProps>(
|
|||
>
|
||||
{texts.map((text, index) => (
|
||||
<AccordionItem
|
||||
className="rounded-2xl border-none bg-secondary px-2 py-0 shadow-secondary shadow-sm sm:px-4"
|
||||
className="rounded-lg border-none bg-secondary px-2 py-0 shadow-none sm:px-4"
|
||||
// biome-ignore lint/suspicious/noArrayIndexKey: <index is safe here>
|
||||
key={`ac-item-${index}`}
|
||||
value={`item-${index}`}
|
||||
|
|
|
|||
|
|
@ -560,7 +560,7 @@ export const it: LangDict = {
|
|||
domande: [
|
||||
{
|
||||
id: "transitori",
|
||||
label: "Transitori",
|
||||
label: "Affitti Transitori",
|
||||
qas: [
|
||||
Faqs.cosa_significa_transitorio,
|
||||
Faqs.chi_puo_transitorio,
|
||||
|
|
|
|||
|
|
@ -68,6 +68,7 @@ const FAQSection = () => {
|
|||
>
|
||||
<div className="absolute -top-16" id={`faq-${item.id}`} />
|
||||
<h3 className="font-semibold text-2xl">{item.label}</h3>
|
||||
<hr className="border-primary" />
|
||||
<div className="flex flex-col gap-1">
|
||||
{item.qas.map((f, i) => (
|
||||
<AccordionItem
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue