Skip to content

Commit

Permalink
Fix overflow bug in Accordion (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
havardthom authored Nov 9, 2024
1 parent 6afb28f commit c175bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/scripts/_components/ScriptAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c175bff

Please sign in to comment.