Add more space between paragraphs into news page

This commit is contained in:
Daniele Pancottini
2023-02-08 18:55:02 +01:00
parent 09ae4bc7b0
commit 9b38091581
3 changed files with 1 additions and 13 deletions

View File

@@ -115,7 +115,7 @@ export default function NewsSlider() {
color="GrayText"
>
{card.text.split('<br/>').map((str, index) => (
<p key={index}>{str}</p>
<p className='mb-5' key={index}>{str}</p>
))}
</Text>
</Stack>