news design correction padding 11

This commit is contained in:
alma 2025-04-15 14:42:03 +02:00
parent 1c11ddaec4
commit d8a402d270

View File

@ -72,8 +72,8 @@ export function News() {
<CardHeader className="flex flex-row items-center justify-between py-2 px-4 border-b border-gray-100">
<CardTitle className="text-lg font-semibold text-gray-800">News</CardTitle>
</CardHeader>
<CardContent className="p-3">
<div className="flex items-center justify-center h-[320px]">
<CardContent className="p-2">
<div className="flex items-center justify-center h-[300px]">
<RefreshCw className="h-5 w-5 animate-spin text-gray-400" />
</div>
</CardContent>
@ -95,21 +95,21 @@ export function News() {
<RefreshCw className="h-4 w-4" />
</Button>
</CardHeader>
<CardContent className="p-3">
<CardContent className="p-2">
{error ? (
<p className="text-center text-red-500">{error}</p>
) : (
<div className="space-y-2 h-[320px] overflow-y-auto scrollbar-thin scrollbar-thumb-gray-200 scrollbar-track-transparent">
<div className="space-y-1.5 h-[300px] overflow-y-auto scrollbar-thin scrollbar-thumb-gray-200 scrollbar-track-transparent">
{news.length === 0 ? (
<p className="text-center text-gray-500">No news available</p>
) : (
news.map((item) => (
<div
key={item.id}
className="p-4 bg-gray-50/50 hover:bg-gray-100/50 rounded-lg transition-colors cursor-pointer"
className="p-3 bg-gray-50/50 hover:bg-gray-100/50 rounded-lg transition-colors cursor-pointer"
onClick={() => window.open(item.url, '_blank')}
>
<div className="flex items-center justify-between mb-2.5">
<div className="flex items-center justify-between mb-1.5">
<span className="text-xs text-gray-500">{formatDate(item.date)}</span>
{item.category && (
<span className="text-xs px-2 py-0.5 rounded-full bg-blue-50 text-blue-600">
@ -117,7 +117,7 @@ export function News() {
</span>
)}
</div>
<h3 className="text-sm font-medium text-gray-800 mb-2 line-clamp-2" title={item.title}>
<h3 className="text-sm font-medium text-gray-800 mb-1.5 line-clamp-2" title={item.title}>
{item.title}
</h3>
{item.description && (