Skip to content

Commit 68997a9

Browse files
committed
feat: allow for modal items to have overflow scrolling
1 parent 5ce040d commit 68997a9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/routes/_app/dashboard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ const RouteComponent = () => {
200200
})}
201201
</Dialog.Title>
202202
</Dialog.Header>
203-
<ul className="flex flex-col gap-5">
203+
<ul className="flex flex-col gap-5 overflow-auto">
204204
<AnimatePresence mode="popLayout">
205205
{userInfoQuery.data?.map((user, i) => {
206206
return (
@@ -270,7 +270,7 @@ const RouteComponent = () => {
270270
})}
271271
</Dialog.Title>
272272
</Dialog.Header>
273-
<ul className="flex flex-col gap-5">
273+
<ul className="flex flex-col gap-5 overflow-auto">
274274
<AnimatePresence mode="popLayout">
275275
<div className="flex justify-between gap-4 font-bold">
276276
<p>
@@ -328,7 +328,7 @@ const RouteComponent = () => {
328328
})}
329329
</Dialog.Title>
330330
</Dialog.Header>
331-
<ul className="flex flex-col gap-5">
331+
<ul className="flex flex-col gap-5 overflow-auto">
332332
<AnimatePresence mode="popLayout">
333333
<div className="flex justify-between gap-4 font-bold">
334334
<p>

0 commit comments

Comments
 (0)