Skip to content

Commit

Permalink
style(Toolbox.tsx): add xl and 2xl breakpoints to the toolbox grid to…
Browse files Browse the repository at this point in the history
… improve responsiveness and layout consistency, refs #24
  • Loading branch information
masterkain committed May 22, 2023
1 parent 520b8cc commit 320fdb7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/occurrence/Toolbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ import ToolboxFetch from './toolbox/Replay';
export default function Toolbox({ occurrence }: { occurrence: occurrence }) {
return (
<div className="px-4 sm:px-6 lg:px-8">
<ul role="list" className="grid grid-cols-1 gap-6 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
<ul
role="list"
className="grid grid-cols-1 gap-6 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-3 2xl:grid-cols-4"
>
<li className="col-span-1 flex flex-col divide-y divide-indigo-400/30 rounded-lg text-center shadow">
<ToolboxAI occurrenceId={occurrence.id} />
</li>
Expand Down

0 comments on commit 320fdb7

Please sign in to comment.