fix: line wrap issue in EventModal

This commit is contained in:
MTG2000
2022-09-12 17:45:24 +03:00
parent d1ff2a1df3
commit f586575923
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ export default function EventCard({ event }: Props) {
<p className="text-body4 text-gray-600 line-clamp-2">
{trimText(event.description, 90)}
</p>
<span className={`mt-8 text-body5 self-start px-8 py-4 rounded-20 whitespace-pre-line ${mapTypeToBadge[event.type].color}`}>
<span className={`mt-8 text-body5 self-start px-8 py-4 rounded-20 ${mapTypeToBadge[event.type].color}`}>
{mapTypeToBadge[event.type].text}
</span>
</div>

View File

@@ -57,7 +57,7 @@ export default function ProjectDetailsCard({ direction, event, ...props }: Props
<a href={event.website} target="_blank" rel="noreferrer" > <span className="align-middle ">{event.website}</span></a>
</p>
</div>
<p className="text-body4 text-gray-600 mt-24">
<p className="text-body4 text-gray-600 mt-24 whitespace-pre-line">
{event.description}
</p>
</div>