mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 14:04:06 +01:00
feat: update ProjectCardSection layout for better responsiveness on smaller screens
This commit is contained in:
parent
3aac567695
commit
939ce86988
@ -27,7 +27,7 @@ export default function ProjectCardCalendarManageSection({ projectData }: Projec
|
|||||||
const [currentProjectId, setCurrentProjectId] = useState<number | undefined>(undefined);
|
const [currentProjectId, setCurrentProjectId] = useState<number | undefined>(undefined);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div id="content" className="grid grid-cols-2 space-x-2">
|
<div id="content" className="grid grid-cols-1 md:grid-cols-2 space-x-2">
|
||||||
{projectData != null ? (
|
{projectData != null ? (
|
||||||
projectData.map((project) => (
|
projectData.map((project) => (
|
||||||
<Card key={project.id} className="mb-3">
|
<Card key={project.id} className="mb-3">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user