diff options
Diffstat (limited to 'frontend/app/components/ThreeColumnLayout.tsx')
| -rw-r--r-- | frontend/app/components/ThreeColumnLayout.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/ThreeColumnLayout.tsx b/frontend/app/components/ThreeColumnLayout.tsx index 42533b7..d2a5ba5 100644 --- a/frontend/app/components/ThreeColumnLayout.tsx +++ b/frontend/app/components/ThreeColumnLayout.tsx @@ -6,7 +6,7 @@ type Props = { export default function ThreeColumnLayout({ children }: Props) { return ( - <div className="grow grid grid-cols-3 divide-x divide-gray-300"> + <div className="grow grid grid-cols-1 md:grid-cols-3 md:divide-x divide-gray-300"> {children} </div> ); |
