هذا الالتزام موجود في:
Your Name
2025-10-13 05:59:39 -04:00
الأصل fef26fdc24 5eccd767f9
التزام d7afdda419
2 ملفات معدلة مع 5 إضافات و3 حذوفات

عرض الملف

@@ -130,6 +130,7 @@ const CampaignTracker = ({ handleMenuClick }: { handleMenuClick: () => void }) =
) )
})} })}
</div> </div>
</div> </div>
) )
} }

عرض الملف

@@ -332,7 +332,7 @@ const IntegratedStrategy = () => {
] ]
const CategorySection = ({ category }: { category: Category }) => ( const CategorySection = ({ category }: { category: Category }) => (
<div className="mb-4 "> <div className="mb- bg-white pt-1">
<div className={`${category.color} px-3 py-2 mt-2 mb-2 ml-2 mr-2 rounded-xl border-blue-500`}> <div className={`${category.color} px-3 py-2 mt-2 mb-2 ml-2 mr-2 rounded-xl border-blue-500`}>
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<div className={`w-2 h-5 ${category.highlight} rounded`}></div> <div className={`w-2 h-5 ${category.highlight} rounded`}></div>
@@ -363,7 +363,8 @@ const IntegratedStrategy = () => {
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6"> <div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
{columns.map((column, index) => ( {columns.map((column, index) => (
<div key={index} className="bg-[#f6f6fa] rounded-lg"> <div key={index} className="bg-[#f6f6fa] rounded-lg">
<div className=" bg-[#f6f6fa] p-4 rounded-t-lg shadow-[0_4px_8px_0_rgba(0,0,0,0.08)]"> <div className=" p-4 rounded-t-lg border-0 rounded-b-xl">
{/* shadow-[0_4px_8px_0_rgba(0,0,0,0.08)] */}
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<h2 className="text-lg font-semibold text-[#2B2D3B]">{column.title}</h2> <h2 className="text-lg font-semibold text-[#2B2D3B]">{column.title}</h2>
@@ -374,7 +375,7 @@ const IntegratedStrategy = () => {
{column.date && <span className="text-sm text-gray-500 font-medium">{column.date}</span>} {column.date && <span className="text-sm text-gray-500 font-medium">{column.date}</span>}
</div> </div>
</div> </div>
<div className=' custom-scrollbar rounded-xl'> <div className=' custom-scrollbar rounded-xl ' style={{ border: 0}}>
{column.categories.map((category, categoryIndex) => ( {column.categories.map((category, categoryIndex) => (
<CategorySection key={categoryIndex} category={category} /> <CategorySection key={categoryIndex} category={category} />
))} ))}