added right padding to card title

This commit is contained in:
2024-01-16 09:03:32 +01:00
parent 1fd4f3262c
commit bb84d50de1

View File

@@ -22,7 +22,7 @@ export const LocationCard:FC<LocationCardProps> = ({location: { _id, name, yearM
<a href={`/location/${_id}/edit`} className="card-subtitle tooltip" data-tip="Edit Location"> <a href={`/location/${_id}/edit`} className="card-subtitle tooltip" data-tip="Edit Location">
<Cog8ToothIcon className="h-[1em] w-[1em] absolute cursor-pointer top-3 right-3 text-2xl" /> <Cog8ToothIcon className="h-[1em] w-[1em] absolute cursor-pointer top-3 right-3 text-2xl" />
</a> </a>
<h2 className="card-title">{formatYearMonth(yearMonth)} {name}</h2> <h2 className="card-title mr-[2em]">{formatYearMonth(yearMonth)} {name}</h2>
<div className="card-actions"> <div className="card-actions">
{ {
bills.map(bill => <BillBadge key={`${bill._id}`} locationId={_id} bill={bill} />) bills.map(bill => <BillBadge key={`${bill._id}`} locationId={_id} bill={bill} />)