fixed overflow bug on long booking items
This commit is contained in:
parent
d8533b3a5e
commit
062b92be29
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ export default function Bookings({ bookings }) {
|
|||
</td>
|
||||
<td
|
||||
className={
|
||||
"px-6 py-4 whitespace-nowrap" + (booking.rejected ? " line-through" : "")
|
||||
"px-6 py-4 max-w-20 w-full" + (booking.rejected ? " line-through" : "")
|
||||
}>
|
||||
<div className="text-sm text-gray-900">{booking.title}</div>
|
||||
<div className="text-sm text-gray-500">{booking.description}</div>
|
||||
|
|
Loading…
Reference in a new issue