news design correction padding 17

This commit is contained in:
alma 2025-04-15 15:02:27 +02:00
parent 7d25b2e71e
commit bf82eb48ed

View File

@ -106,24 +106,16 @@ export function News() {
news.map((item) => ( news.map((item) => (
<div <div
key={item.id} key={item.id}
className="p-2 rounded-lg bg-white shadow-sm hover:shadow-md transition-all duration-200 border border-gray-100" className="flex items-center justify-between p-1.5 hover:bg-gray-50 cursor-pointer"
onClick={() => window.open(item.url, '_blank')} onClick={() => window.open(item.url, '_blank')}
> >
<div className="flex flex-col gap-1"> <div className="flex flex-col min-w-0">
<div className="flex items-center justify-between text-xs"> <h3 className="text-sm text-blue-600 truncate" title={item.title}>
<span className="text-gray-500">{formatDate(item.date)}</span>
{item.category && (
<span className="px-2 py-0.5 rounded-full bg-blue-50 text-blue-600">
{item.category}
</span>
)}
</div>
<h3 className="text-sm font-medium text-gray-800 line-clamp-2" title={item.title}>
{item.title} {item.title}
</h3> </h3>
<p className="text-xs text-gray-500 line-clamp-2" title={item.description}> <div className="flex items-center gap-2">
{item.description} <span className="text-xs text-gray-500">{formatDate(item.date)}</span>
</p> </div>
</div> </div>
</div> </div>
)) ))