|
@@ -282,11 +282,11 @@ const MatchPrediction = ({ selectedDayMatches, currentUser }) => {
|
|
|
return (
|
|
|
<div key={match._id} className="bg-blue-900">
|
|
|
<div className="flex justify-between items-center bg-blue-800 text-white py-2 px-4 rounded-lg">
|
|
|
- <div className="flex items-center space-x-2">
|
|
|
+ <div className="flex items-center">
|
|
|
<span className="text-sm">{formattedDate}</span>
|
|
|
- <span className="text-xs bg-blue-700 px-2 py-0.5 rounded">
|
|
|
- {match.league}
|
|
|
- </span>
|
|
|
+ </div>
|
|
|
+ <div className="flex-grow text-center">
|
|
|
+ <span className="font-bold text-base">{match.league}</span>
|
|
|
</div>
|
|
|
<div className="flex items-center">
|
|
|
{match.status === "未开始" ? (
|