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