Fix overflow bug in Accordion (#151)
Some checks are pending
Deploy Next.js site to Pages / build (push) Waiting to run
Deploy Next.js site to Pages / deploy (push) Blocked by required conditions

This commit is contained in:
Håvard Gjøby Thom 2024-11-09 10:32:04 +01:00 committed by GitHub
parent 6afb28f887
commit c175bff838
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ export default function ScriptAccordion({
value={expandedItem}
onValueChange={handleAccordionChange}
collapsible
className="overflow-y-scroll max-h-[calc(100vh-210px)] overflow-x-hidden pb-4"
className="overflow-y-scroll max-h-[calc(100vh-210px)] overflow-x-hidden mt-3 p-2"
>
{items.map((category) => (
<AccordionItem